Skip to content

Commit

Permalink
split QA into own CI group
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoStrouwen committed Feb 9, 2024
1 parent f8a7d81 commit 74a322e
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 74a322e

Please sign in to comment.