Skip to content

Commit 136e21b

Browse files
Move test dependencies to [extras] block
Following the pattern of other OrdinaryDiffEq sublibraries: - Removed test/Project.toml - Added test dependencies to [extras] block in main Project.toml - Added compat entries for test dependencies - Updated test files to use OrdinaryDiffEqSIMDRK module name 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent bcf19d8 commit 136e21b

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

lib/OrdinaryDiffEqSIMDRK/Project.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,27 @@ UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"
1313
VectorizationBase = "3d5dd08c-fd9d-11e8-17fa-ed2836048c2f"
1414

1515
[compat]
16+
DiffEqDevTools = "2.44"
1617
MuladdMacro = "0.2"
1718
OrdinaryDiffEqCore = "1"
1819
Reexport = "1"
20+
SafeTestsets = "0.1"
1921
SLEEFPirates = "0.6"
2022
Static = "0.7, 0.8, 1"
23+
StaticArrays = "1.9"
24+
Test = "1"
2125
UnPack = "1"
2226
VectorizationBase = "0.21"
2327
julia = "1.10"
2428

2529
[extras]
30+
DiffEqDevTools = "f3b72e0c-5b89-59e1-b016-84e28bfd966d"
31+
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
32+
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182"
2633
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2734

2835
[targets]
29-
test = ["Test"]
36+
test = ["DiffEqDevTools", "SafeTestsets", "StaticArrays", "Test"]
3037

3138
[sources.OrdinaryDiffEqCore]
3239
path = "../OrdinaryDiffEqCore"

lib/OrdinaryDiffEqSIMDRK/test/Project.toml

Lines changed: 0 additions & 6 deletions
This file was deleted.

lib/OrdinaryDiffEqSIMDRK/test/adaptivity_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using SIMDRungeKutta, StaticArrays, Test
1+
using OrdinaryDiffEqSIMDRK, StaticArrays, Test
22

33
function lorenz(u, p, t)
44
SA[10.0(u[2] - u[1]), u[1] * (28.0 - u[3]) - u[2], u[1] * u[2] - (8 / 3) * u[3]]

lib/OrdinaryDiffEqSIMDRK/test/convergence_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using SIMDRungeKutta, DiffEqDevTools, Test
1+
using OrdinaryDiffEqSIMDRK, DiffEqDevTools, Test
22

33
function nonauto1(u, p, t)
44
x, _ = u

0 commit comments

Comments
 (0)