Skip to content

Commit 28a9002

Browse files
authored
Merge pull request #34 from JuliaString/spj/fixpkg3
Further fixes for Pkg3 changes
2 parents 8be63d9 + 391097f commit 28a9002

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ notifications:
99
email: false
1010
git:
1111
depth: 99999999
12+
1213
matrix:
13-
fast_finish: true
1414
allow_failures:
1515
julia: nightly
1616

1717
# uncomment the following lines to override the default test script
1818
script:
1919
- 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)'
2121
after_success:
2222
# push coverage results to Coveralls
2323
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

0 commit comments

Comments
 (0)