We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2947b05 commit ea6bb07Copy full SHA for ea6bb07
2 files changed
test/AlgorithmsInterfaceTestSuite.jl/Project.toml
@@ -8,7 +8,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
8
AlgorithmsInterface = "d1e3940c-cd12-4505-8585-b0a4b322527d"
9
10
[compat]
11
-Test = "1.11.0"
+Test = "1.10.0"
12
13
[sources]
14
AlgorithmsInterface = {path = "../../"}
test/test_stopping_criterion.jl
@@ -1,5 +1,11 @@
1
using Pkg
2
Pkg.activate(@__DIR__)
3
+if VERSION < v"1.11"
4
+ # Once the main package is registered: just load test suite
5
+ # Pkg.add(path = (@__DIR__) * "/../", subdir = "test/AlgorithmsInterfaceTestSuite.jl")
6
+ Pkg.develop(path = (@__DIR__) * "/../")
7
+ Pkg.develop(path = (@__DIR__) * "/AlgorithmsInterfaceTestSuite.jl")
+end
using Test
using AlgorithmsInterface
using Dates
0 commit comments