We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 975e5c9 commit 878f6bcCopy full SHA for 878f6bc
2 files changed
.github/workflows/CI.yml
@@ -29,6 +29,7 @@ jobs:
29
- vectorspaces
30
- abstracttensor
31
- linalg
32
+ - utility
33
os:
34
- ubuntu-latest
35
- macOS-latest
test/runtests.jl
@@ -45,7 +45,9 @@ const GROUP = uppercase(
45
end
46
47
48
- @time @safetestset "aqua" begin
49
- include("aqua.jl")
+ if GROUP == "ALL" || GROUP == "UTILITY"
+ @time @safetestset "aqua" begin
50
+ include("aqua.jl")
51
+ end
52
53
0 commit comments