Skip to content

Commit ba65a08

Browse files
committed
Attempt to fix for Pkg3
1 parent 1b2ea0b commit ba65a08

File tree

3 files changed

+1
-14
lines changed

3 files changed

+1
-14
lines changed

.travis.yml

+1-9
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,7 @@ matrix:
2727

2828
## uncomment the following lines to override the default test script
2929
script:
30-
- julia -e '
31-
if VERSION < v"0.7.0-DEV.5183";
32-
Pkg.clone(pwd());
33-
Pkg.test("ModuleInterfaceTools", coverage=true);
34-
else;
35-
using UUIDs; import Pkg; p = "Project.toml"; uuid = "5cb8414e-7aab-5a03-a681-351269c074bf";
36-
write(p, replace(read(p, String), uuid => uuid4()));
37-
Pkg.instantiate(); push!(LOAD_PATH, "test"); Pkg.test(; coverage=true);
38-
end'
30+
- 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'
3931
after_success:
4032
# push coverage results to Coveralls
4133
- julia -e 'cd(Pkg.dir("ModuleInterfaceTools")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())'

Manifest.toml

-4
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,3 @@ uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
33

44
[[Test]]
55
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
6-
7-
[[APITest]]
8-
path = "test"
9-
uuid = "999adbfa-7dca-48e3-8844-41bde97b6280"

Project.toml

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ version = "0.1.3"
99
[deps]
1010
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1111
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
12-
APITest = "999adbfa-7dca-48e3-8844-41bde97b6280"

0 commit comments

Comments
 (0)