-
-
Notifications
You must be signed in to change notification settings - Fork 270
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix using local projects when testing (#311)
* fix using local projects when testing
- Loading branch information
1 parent
aec0371
commit 287ab89
Showing
10 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
author = "Some One" | ||
authors = ["Some One <[email protected]>"] | ||
name = "BigProject" | ||
uuid = "da7e1942-2519-11e8-2822-f5508ce758f0" | ||
version = "0.1.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
authors = ["Some One <[email protected]>"] | ||
name = "SubModule" | ||
uuid = "0d404dc8-25d6-11e8-300e-11c8e584fb95" | ||
version = "0.1.0" | ||
author = ["Some One"] | ||
|
||
[deps] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
authors = ["Some One <[email protected]>"] | ||
name = "SubModule2" | ||
uuid = "2d3cad7e-26b9-11e8-3e8d-a543003d541d" | ||
version = "0.1.0" | ||
author = ["Some One"] | ||
|
||
[deps] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[[Example]] | ||
deps = ["Test"] | ||
git-tree-sha1 = "8eb7b4d4ca487caade9ba3e85932e28ce6d6e1f8" | ||
uuid = "7876af07-990d-54b4-ab0e-23690620f79a" | ||
version = "0.5.1" | ||
|
||
[[Test]] | ||
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
authors = ["Some One <[email protected]>"] | ||
name = "LibFoo" | ||
uuid = "22d9ad80-6275-11e8-2737-a9b3d0e63aa9" | ||
version = "0.1.0" | ||
|
||
[deps] | ||
Example = "7876af07-990d-54b4-ab0e-23690620f79a" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module LibFoo | ||
|
||
greet() = print("Hello World!") | ||
|
||
end # module |
4 changes: 4 additions & 0 deletions
4
test/test_packages/BigProject/test/LibFoo.jl/test/runtests.jl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
using LibFoo | ||
using Test | ||
|
||
@test 1 == 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters