Skip to content

Commit

Permalink
Attempt to fix for Pkg3
Browse files Browse the repository at this point in the history
  • Loading branch information
ScottPJones committed Jun 19, 2018
1 parent 1b2ea0b commit ba65a08
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 14 deletions.
10 changes: 1 addition & 9 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,7 @@ matrix:

## uncomment the following lines to override the default test script
script:
- julia -e '
if VERSION < v"0.7.0-DEV.5183";
Pkg.clone(pwd());
Pkg.test("ModuleInterfaceTools", coverage=true);
else;
using UUIDs; import Pkg; p = "Project.toml"; uuid = "5cb8414e-7aab-5a03-a681-351269c074bf";
write(p, replace(read(p, String), uuid => uuid4()));
Pkg.instantiate(); push!(LOAD_PATH, "test"); Pkg.test(; coverage=true);
end'
- julia -e 'if VERSION < v"0.7.0-DEV.5183"; Pkg.clone(pwd()); Pkg.test("ModuleInterfaceTools", coverage=true); else; using UUIDs; import Pkg; p = "Project.toml"; uuid = "5cb8414e-7aab-5a03-a681-351269c074bf"; write(p, replace(read(p, String), uuid => uuid4())); Pkg.instantiate(); push!(LOAD_PATH, "test"); Pkg.test(; coverage=true); end'
after_success:
# push coverage results to Coveralls
- julia -e 'cd(Pkg.dir("ModuleInterfaceTools")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'
Expand Down
4 changes: 0 additions & 4 deletions Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,3 @@ uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

[[Test]]
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[[APITest]]
path = "test"
uuid = "999adbfa-7dca-48e3-8844-41bde97b6280"
1 change: 0 additions & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,3 @@ version = "0.1.3"
[deps]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
APITest = "999adbfa-7dca-48e3-8844-41bde97b6280"

0 comments on commit ba65a08

Please sign in to comment.