You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .travis.yml
+3-6Lines changed: 3 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,7 @@ git:
21
21
22
22
# uncomment the following lines to override the default test script
23
23
#script:
24
-
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
25
-
# - julia -e 'pkg="HTML_Entities" ; if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("StrTables"); Pkg.clone(pwd()); else; Pkg.up(); end ; Pkg.build(pkg); Pkg.test(pkg; coverage=true)'
24
+
26
25
after_success:
27
-
# push coverage results to Coveralls
28
-
- julia -e 'cd(Pkg.dir("HTML_Entities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
29
-
# push coverage results to Codecov
30
-
- julia -e 'cd(Pkg.dir("HTML_Entities")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
26
+
# push coverage results to Coveralls & Codecov
27
+
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("HTML_Entities")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder()); Codecov.submit(Codecov.process_folder())'
0 commit comments