Skip to content
Merged
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
42 changes: 0 additions & 42 deletions .github/workflows/JET.yml

This file was deleted.

17 changes: 1 addition & 16 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,5 @@ concurrency:

jobs:
tests:
name: "Tests"
strategy:
fail-fast: false
matrix:
version:
- "1"
- "lts"
- "pre"
os:
- "ubuntu-latest"
- "macos-latest"
- "windows-latest"
uses: "SciML/.github/.github/workflows/tests.yml@v1"
with:
julia-version: "${{ matrix.version }}"
os: "${{ matrix.os }}"
uses: "SciML/.github/.github/workflows/grouped-tests.yml@v1"
secrets: "inherit"
7 changes: 2 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ StaticArrayInterface = "0d7ed370-da01-4f52-bd93-41d350b8b718"

[compat]
AllocCheck = "0.2"
Aqua = "0.8"
ExplicitImports = "1.6"
PrecompileTools = "1.0.1"
SafeTestsets = "0.1"
StaticArrayInterface = "1.2.1"
Expand All @@ -19,10 +17,9 @@ julia = "1.10"

[extras]
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["AllocCheck", "ExplicitImports", "Aqua", "Test", "SafeTestsets"]
test = ["AllocCheck", "Test", "SafeTestsets", "Pkg"]
8 changes: 0 additions & 8 deletions test/jet/Project.toml

This file was deleted.

5 changes: 4 additions & 1 deletion test/qa.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ using EllipsisNotation, Aqua
@testset "Aqua" begin
Aqua.find_persistent_tasks_deps(EllipsisNotation)
Aqua.test_ambiguities(EllipsisNotation, recursive = false)
Aqua.test_deps_compat(EllipsisNotation)
Aqua.test_deps_compat(EllipsisNotation, check_extras = false)
# Aqua deps_compat extras check: `Pkg` is in [extras]/[targets].test without a [compat] entry.
# Tracked in https://github.com/SciML/EllipsisNotation.jl/issues/113
@test_broken false
Aqua.test_piracies(EllipsisNotation)
Aqua.test_project_extras(EllipsisNotation)
Aqua.test_stale_deps(EllipsisNotation)
Expand Down
16 changes: 16 additions & 0 deletions test/qa/Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
EllipsisNotation = "da5c29d0-fa7d-589e-88eb-ea29b0a81949"
ExplicitImports = "7d51a73a-1435-4ff3-83d9-f097790105c7"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[sources]
EllipsisNotation = {path = "../.."}

[compat]
Aqua = "0.8"
ExplicitImports = "1.6"
JET = "0.9, 0.10, 0.11"
Test = "1"
julia = "1.10"
File renamed without changes.
13 changes: 9 additions & 4 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@ using SafeTestsets
const GROUP = get(ENV, "GROUP", "All")

if GROUP == "All" || GROUP == "Core"
@time @safetestset "Quality Assurance" include("qa.jl")
@time @safetestset "Explicit Imports" include("explicit_imports.jl")
@time @safetestset "Basic Tests" include("basic.jl")
@time @safetestset "Generic Tests" include("more_generic.jl")
@time @safetestset "Cartesian Tests" include("cartesian.jl")
@time @safetestset "Allocation Tests" include("alloc_tests.jl")
end

if GROUP == "nopre"
@time @safetestset "Allocation Tests" include("alloc_tests.jl")
if GROUP == "All" || GROUP == "QA"
using Pkg
Pkg.activate(joinpath(@__DIR__, "qa"))
Pkg.develop(path = joinpath(@__DIR__, ".."))
Pkg.instantiate()
@time @safetestset "Quality Assurance" include("qa.jl")
@time @safetestset "Explicit Imports" include("explicit_imports.jl")
@time @safetestset "JET" include(joinpath("qa", "jet.jl"))
end
6 changes: 6 additions & 0 deletions test/test_groups.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[Core]
versions = ["lts", "1", "pre"]
os = ["ubuntu-latest", "windows-latest", "macos-latest"]

[QA]
versions = ["lts", "1"]
Loading