We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14acf0d commit ffb42b9Copy full SHA for ffb42b9
.github/workflows/enzyme.yml
@@ -53,9 +53,11 @@ jobs:
53
using Pkg
54
try
55
# force it to use this PR's version of the package
56
- Pkg.develop(PackageSpec(path=".")) # resolver may fail with main deps
+ ## resolver may fail with main deps
57
+ Pkg.develop(PackageSpec(path="."))
58
Pkg.update()
- Pkg.test(coverage=true) # resolver may fail with test time deps
59
+ ## # resolver may fail with test time deps
60
+ Pkg.test(; coverage=true, julia_args=`--depwarn=no`)
61
catch err
62
err isa Pkg.Resolve.ResolverError || rethrow()
63
# If we can't resolve that means this is incompatible by SemVer and this is fine
0 commit comments