Skip to content

Commit 3663c40

Browse files
try and fix downstream tests
1 parent e652157 commit 3663c40

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/Downstream.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,16 +44,14 @@ jobs:
4444
run: |
4545
using Pkg
4646
try
47-
48-
# force it to use this PR's version of the package
49-
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
50-
5147
function dev_subpkg(subpkg)
52-
subpkg_path = joinpath(dirname(@__DIR__),"ArrayInterface", "lib", subpkg)
48+
subpkg_path = joinpath(".","ArrayInterface", "lib", subpkg)
5349
Pkg.develop(Pkg.PackageSpec(path=subpkg_path))
5450
end
5551
dev_subpkg("ArrayInterfaceCore")
56-
Pkg.develop("ArrayInterface")
52+
53+
# force it to use this PR's version of the package
54+
Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
5755
5856
Pkg.update()
5957
Pkg.test() # resolver may fail with test time deps

0 commit comments

Comments
 (0)