Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ RandomNumbers = "e6cf234a-135c-5ec9-84dd-332b85af5143"
DiffEqBase = "6.133.1, 7"
DiffEqNoiseProcess = "5.13.0"
Distributions = "0.25.100"
Markdown = "1"
RandomNumbers = "1.5.3"
SafeTestsets = "0.1, 1"
SciMLTesting = "1"
Expand Down
6 changes: 3 additions & 3 deletions test/qa/Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[deps]
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
DiffEqFinancial = "5a0ffddc-d203-54b0-88ba-2c03c0fc2e67"
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
SciMLTesting = "09d9d899-5365-40a9-917a-5f67fddea283"
Expand All @@ -12,10 +12,10 @@ DiffEqFinancial = {path = "../.."}

[compat]
AllocCheck = "0.2"
Aqua = "0.8"
DiffEqFinancial = "2.10.0"
ExplicitImports = "1.14"
JET = "0.9, 0.10, 0.11"
SafeTestsets = "0.1, 1"
SciMLTesting = "1"
SciMLTesting = "1.6"
Test = "1.10"
julia = "1.10"
8 changes: 0 additions & 8 deletions test/qa/explicit_imports.jl

This file was deleted.

87 changes: 0 additions & 87 deletions test/qa/jet_tests.jl

This file was deleted.

15 changes: 15 additions & 0 deletions test/qa/qa.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
using SciMLTesting, DiffEqFinancial, Test
using JET

run_qa(
DiffEqFinancial;
explicit_imports = true,
aqua_kwargs = (; deps_compat = (; check_extras = false)),
ei_kwargs = (;
# `AbstractSDEProblem` is owned by SciMLBase and reexported (non-public) by
# DiffEqBase; it is not public in SciMLBase either, so neither the owner nor
# the public import can be satisfied by re-pointing the import.
all_explicit_imports_via_owners = (; ignore = (:AbstractSDEProblem,)), # SciMLBase
all_explicit_imports_are_public = (; ignore = (:AbstractSDEProblem,)), # SciMLBase
),
)
Loading