Skip to content

Commit f396bfe

Browse files
committed
Update Travis
1 parent a5c0c43 commit f396bfe

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.travis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ git:
1313

1414
## uncomment the following lines to allow failures on nightly julia
1515
## (tests will run but not make your overall status red)
16-
matrix:
17-
allow_failures:
18-
- julia: nightly
16+
#matrix:
17+
# allow_failures:
18+
# - julia: nightly
1919

2020
# uncomment the following lines to override the default test script
2121
script:
2222
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
23-
- julia -e 'f = VERSION < v"0.7.0-DEV" ; f || (using Pkg) ; const clone = ifelse(f, Pkg.clone, Pkg.add) ; d="https://github.com/JuliaString" ; for n in ("ModuleInterfaceTools", "StrAPI", "CharSetEncodings", "ChrBase", "MurmurHash3", "StrBase", "StrLiterals") ; clone("$d/$n.jl") ; end ; Pkg.add("Format"); clone(pwd()); Pkg.test("StrFormat"; coverage=true)'
23+
- julia -e 'if VERSION < v"0.7.0-DEV" ; for n in ("ModuleInterfaceTools", "Format", "StrAPI", "CharSetEncodings"); Pkg.add(n); end ; for n in ("ChrBase", "MurmurHash3", "StrBase", "StrLiterals") ; Pkg.clone("https://github.com/JuliaString/$n.jl") ; end ; Pkg.clone(pwd()); else ; using Pkg ; end ; Pkg.test("StrFormat"; coverage=true)'
2424
after_success:
2525
# push coverage results to Coveralls
2626
- julia -e 'VERSION < v"0.7.0-DEV" || (using Pkg); cd(Pkg.dir("StrFormat")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

0 commit comments

Comments
 (0)