Skip to content

Commit efa00ec

Browse files
committed
Update .travis and appveyor scripts
1 parent 568d7e8 commit efa00ec

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
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()) ; end ; Pkg.test("Format"; coverage=true)'
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)'
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())'

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
name = "Format"
1+
authors = ["ScottPJones <[email protected]>"]
22
desc = "C, Python, and type-defined numeric and string formatting"
33
keywords = ["Strings", "Formatting"]
4-
authors = ["ScottPJones <[email protected]>"]
54
license = "MIT"
5+
name = "Format"
66
uuid = "1fa38f19-a742-5d3f-a2b9-30dd87b9d5f8"
77

88
[deps]

appveyor.yml

Lines changed: 2 additions & 2 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 InteractiveUtils);
41+
- C:\projects\julia\bin\julia -e "VERSION < v\"0.7.0-DEV\" || (using Pkg, InteractiveUtils);
4242
versioninfo();
4343
if VERSION < v\"0.7.0-DEV.5183\";
4444
Pkg.add(\"Compat\");
4545
Pkg.clone(pwd(), \"Format\");
46-
end"
46+
else; pkg"up"; end"
4747

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

0 commit comments

Comments
 (0)