Skip to content

Commit

Permalink
Merge pull request #617 from ArnoStrouwen/QAgroup
Browse files Browse the repository at this point in the history
split QA into own CI group
  • Loading branch information
ChrisRackauckas authored Feb 9, 2024
2 parents f8a7d81 + 74a322e commit 7718e9d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
matrix:
group:
- Core
- QA
- Downstream
- Python
version:
Expand Down
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,12 @@ function activate_python_env()
end

@time begin
if GROUP == "Core" || GROUP == "All"
if GROUP == "QA"|| GROUP == "All"
@time @safetestset "Aqua" begin
include("aqua.jl")
end
end
if GROUP == "Core" || GROUP == "All"
@time @safetestset "Display" begin
include("display.jl")
end
Expand Down

0 comments on commit 7718e9d

Please sign in to comment.