File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 56
56
import Pkg
57
57
Pkg.Registry.update()
58
58
# Install packages present in subdirectories
59
+ dev_pks = Pkg.PacakgeSpec[]
59
60
for path in ("lib/NonlinearSolveBase",)
60
- Pkg.develop (; path)
61
+ push!(dev_pks, Pkg.PackageSpec (; path) )
61
62
end
63
+ Pkg.develop(dev_pks)
62
64
Pkg.instantiate()
63
65
Pkg.test(; coverage=true)
64
66
shell : julia --color=yes --code-coverage=user --depwarn=yes --project=lib/BracketingNonlinearSolve {0}
Original file line number Diff line number Diff line change 59
59
import Pkg
60
60
Pkg.Registry.update()
61
61
# Install packages present in subdirectories
62
+ dev_pks = Pkg.PacakgeSpec[]
62
63
for path in ("lib/NonlinearSolveBase", "lib/BracketingNonlinearSolve")
63
- Pkg.develop (; path)
64
+ push!(dev_pks, Pkg.PackageSpec (; path) )
64
65
end
66
+ Pkg.develop(dev_pks)
65
67
Pkg.instantiate()
66
68
Pkg.test(; coverage=true)
67
69
shell : julia --color=yes --code-coverage=user --depwarn=yes --project=lib/SimpleNonlinearSolve {0}
You can’t perform that action at this time.
0 commit comments