Skip to content

Commit ddd41c5

Browse files
committed
Fix
1 parent 5b82754 commit ddd41c5

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/Test.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,11 @@ jobs:
7777
arch: x64
7878
- uses: julia-actions/cache@v2
7979
- name: Install dependencies & run tests
80-
# how to add the local DIT to the DI test env?
8180
run: julia --color=yes -e '
8281
using Pkg;
8382
Pkg.Registry.update();
8483
Pkg.activate("./DifferentiationInterface/test");
85-
Pkg.develop(path="./DifferentiationInterface");
86-
Pkg.develop(path="./DifferentiationInterfaceTest");
84+
Pkg.develop([PackageSpec(; path="./DifferentiationInterface"), PackageSpec(; path="./DifferentiationInterfaceTest")]);
8785
test_kwargs = (; allow_reresolve=false, coverage=true);
8886
if ENV["JULIA_DI_PR_DRAFT"] == "true";
8987
Pkg.test("DifferentiationInterface"; julia_args=["-O1"], test_kwargs...);

0 commit comments

Comments
 (0)