We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b82754 commit ddd41c5Copy full SHA for ddd41c5
1 file changed
.github/workflows/Test.yml
@@ -77,13 +77,11 @@ jobs:
77
arch: x64
78
- uses: julia-actions/cache@v2
79
- name: Install dependencies & run tests
80
- # how to add the local DIT to the DI test env?
81
run: julia --color=yes -e '
82
using Pkg;
83
Pkg.Registry.update();
84
Pkg.activate("./DifferentiationInterface/test");
85
- Pkg.develop(path="./DifferentiationInterface");
86
- Pkg.develop(path="./DifferentiationInterfaceTest");
+ Pkg.develop([PackageSpec(; path="./DifferentiationInterface"), PackageSpec(; path="./DifferentiationInterfaceTest")]);
87
test_kwargs = (; allow_reresolve=false, coverage=true);
88
if ENV["JULIA_DI_PR_DRAFT"] == "true";
89
Pkg.test("DifferentiationInterface"; julia_args=["-O1"], test_kwargs...);
0 commit comments