Skip to content

Commit c5c6bf2

Browse files
authored
Remove Pkg from test environment (#480)
`Pkg` is already present in the main environment and this causes a warning when running the tests in Julia v1.8: ``` (jl_H7V8sZ) pkg> test MPI Testing MPI ┌ Warning: Could not use exact versions of packages in manifest, re-resolving └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:1497 ┌ Warning: Dependency graph not a DAG, linearizing anyway └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:840 ┌ Warning: Dependency graph not a DAG, linearizing anyway └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:840 ┌ Warning: Dependency graph not a DAG, linearizing anyway └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:840 ┌ Warning: Dependency graph not a DAG, linearizing anyway └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:840 ┌ Warning: Dependency graph not a DAG, linearizing anyway └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:840 ┌ Warning: Dependency graph not a DAG, linearizing anyway └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:840 ┌ Warning: Dependency graph not a DAG, linearizing anyway └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:840 ┌ Warning: Could not use exact versions of packages in manifest, re-resolving └ @ Pkg.Operations ~/repo/julia/usr/share/julia/stdlib/v1.8/Pkg/src/Operations.jl:1497 ```
1 parent 139ba2d commit c5c6bf2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,7 @@ julia = "1"
2424
[extras]
2525
CUDA = "052768ef-5323-5732-b1bb-66c8b64840ba"
2626
DoubleFloats = "497a8b3b-efae-58df-a0af-a86822472b78"
27-
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
2827
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2928

3029
[targets]
31-
test = ["CUDA", "DoubleFloats", "Pkg", "Test"]
30+
test = ["CUDA", "DoubleFloats", "Test"]

0 commit comments

Comments
 (0)