We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b7ac6d commit c9e197cCopy full SHA for c9e197c
.github/workflows/IntegrationTest.yml
@@ -35,12 +35,13 @@ jobs:
35
repository: ${{ matrix.package.user }}/${{ matrix.package.repo }}
36
path: downstream
37
- name: Load this and run the downstream tests
38
- shell: julia --project=downstream {0}
+ shell: julia --project=@temp {0}
39
run: |
40
using Pkg
41
+ Pkg.develop(PackageSpec(path="."))
42
try
43
# force it to use this PR's version of the package
- Pkg.develop(PackageSpec(path=".")) # ResolverError with main deps may be thrown here
44
+ Pkg.develop(PackageSpec(path="downstream")) # ResolverError with main deps may be thrown here
45
Pkg.update()
46
Pkg.test() # ResolverError with test deps may be thrown here (before test process starts)
47
catch err
0 commit comments