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
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ notifications:
9
9
email: false
10
10
git:
11
11
depth: 99999999
12
+
12
13
matrix:
13
-
fast_finish: true
14
14
allow_failures:
15
15
julia: nightly
16
16
17
17
# uncomment the following lines to override the default test script
18
18
script:
19
19
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
20
-
- julia -e 'f = VERSION < v"0.7.0-DEV" ; f || (using Pkg) ; Pkg.add("Compat") ; if f ; Pkg.clone(pwd()) ; else ; Pkg.add(pwd()) ; end ; Pkg.build("Format"); Pkg.test("Format"; coverage=true)'
20
+
- julia -e 'if VERSION < v"0.7.0-DEV" ; Pkg.add("Compat") ; Pkg.clone(pwd()) ; else ; using Pkg ; Pkg.add("Compat") ; Pkg.add(pwd()) ; end ; Pkg.build("Format"); Pkg.test("Format"; coverage=true)'
21
21
after_success:
22
22
# push coverage results to Coveralls
23
23
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
0 commit comments