Skip to content

Commit 0c96d63

Browse files
committed
ChrBase now registered, update scripts
1 parent efa00ec commit 0c96d63

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ matrix:
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 'VERSION < v"0.7.0-DEV" || (using Pkg) ; if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("Compat") ; Pkg.clone(pwd()) ; else ; pkg"up" ; end ; Pkg.test("Format"; coverage=true)'
23+
- julia -e 'if VERSION < v"0.7.0-DEV.5183" ; Pkg.add("Compat") ; Pkg.clone(pwd()) ; else ; Pkg.up() ; end ; Pkg.test("Format"; coverage=true)'
2424
after_success:
2525
# push coverage results to Coveralls
2626
- julia -e 'cd(Pkg.dir("Format")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ install:
3838
build_script:
3939
# Need to convert from shallow to complete for Pkg.clone to work
4040
- IF EXIST .git\shallow (git fetch --unshallow)
41-
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg, InteractiveUtils);
41+
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using InteractiveUtils);
4242
versioninfo();
4343
if VERSION < v\"0.7.0-DEV.5183\";
4444
Pkg.add(\"Compat\");
4545
Pkg.clone(pwd(), \"Format\");
46-
else; pkg"up"; end"
46+
else; Pkg.up(); end"
4747

4848
test_script:
49-
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg); Pkg.test(\"Format\")"
49+
- C:\projects\julia\bin\julia -e "Pkg.test(\"Format\")"

0 commit comments

Comments
 (0)