File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 70
70
env :
71
71
GROUP : ${{ matrix.test_group }}
72
72
JULIA_NUM_THREADS : ${{ matrix.runner.num_threads }}
73
+ # Only run Aqua tests on latest version
74
+ AQUA : ${{ matrix.runner.version == '1' ? 'true' : 'false' }}
73
75
74
76
- uses : julia-actions/julia-processcoverage@v1
75
77
Original file line number Diff line number Diff line change @@ -35,6 +35,7 @@ using OrderedCollections: OrderedSet
35
35
using DynamicPPL: getargs_dottilde, getargs_tilde
36
36
37
37
const GROUP = get (ENV , " GROUP" , " All" )
38
+ const AQUA = get (ENV , " AQUA" , " true" ) == " true"
38
39
Random. seed! (100 )
39
40
40
41
include (" test_util.jl" )
@@ -44,7 +45,9 @@ include("test_util.jl")
44
45
# groups are chosen to make both groups take roughly the same amount of
45
46
# time, but beyond that there is no particular reason for the split.
46
47
if GROUP == " All" || GROUP == " Group1"
47
- include (" Aqua.jl" )
48
+ if AQUA
49
+ include (" Aqua.jl" )
50
+ end
48
51
include (" utils.jl" )
49
52
include (" compiler.jl" )
50
53
include (" varnamedvector.jl" )
You can’t perform that action at this time.
0 commit comments