@@ -35,74 +35,45 @@ jobs:
35
35
os : [ubuntu-20.04]
36
36
floatx : [float32, float64]
37
37
test-subset :
38
- # How this works:
39
- # 1st block: Only passes --ignore parameters to pytest.
40
- # → pytest will run all test_*.py files that are NOT ignored.
41
- #
42
- # Subsequent blocks: Only pass paths to test files.
43
- # → pytest will run only these files
44
38
- |
45
- --ignore=pymc/tests/test_distributions_timeseries.py
46
- --ignore=pymc/tests/test_mixture.py
47
- --ignore=pymc/tests/test_model_graph.py
48
- --ignore=pymc/tests/test_modelcontext.py
49
- --ignore=pymc/tests/test_parallel_sampling.py
50
- --ignore=pymc/tests/test_posteriors.py
51
- --ignore=pymc/tests/test_sampling.py
52
- --ignore=pymc/tests/test_profile.py
53
- --ignore=pymc/tests/test_step.py
54
- --ignore=pymc/tests/test_tuning.py
55
- --ignore=pymc/tests/test_transforms.py
56
- --ignore=pymc/tests/test_sampling_jax.py
57
- --ignore=pymc/tests/test_dist_math.py
58
- --ignore=pymc/tests/test_minibatches.py
59
- --ignore=pymc/tests/test_pickling.py
60
- --ignore=pymc/tests/test_updates.py
61
- --ignore=pymc/tests/test_gp.py
62
- --ignore=pymc/tests/test_model.py
63
- --ignore=pymc/tests/test_ode.py
64
- --ignore=pymc/tests/test_posdef_sym.py
65
- --ignore=pymc/tests/test_quadpotential.py
66
- --ignore=pymc/tests/test_shape_handling.py
67
- --ignore=pymc/tests/test_distributions.py
68
- --ignore=pymc/tests/test_distributions_random.py
69
- --ignore=pymc/tests/test_idata_conversion.py
70
- --ignore=pymc/tests/test_smc.py
71
- --ignore=pymc/tests/test_missing.py
39
+ pymc/tests/test_util.py
40
+ pymc/tests/test_logprob.py
41
+ pymc/tests/test_aesaraf.py
42
+ pymc/tests/test_math.py
43
+ pymc/tests/test_posdef_sym.py
44
+ pymc/tests/test_ndarray_backend.py
45
+ pymc/tests/test_hmc.py
46
+ pymc/tests/test_func_utils.py
47
+ pymc/tests/test_shape_handling.py
48
+ pymc/tests/test_starting.py
49
+ pymc/tests/test_mixture.py
72
50
73
51
- |
74
52
pymc/tests/test_distributions.py
75
53
54
+ - |
55
+ pymc/tests/test_tuning.py
56
+ pymc/tests/test_shared.py
57
+ pymc/tests/test_types.py
58
+ pymc/tests/test_distributions_moments.py
59
+
76
60
- |
77
61
pymc/tests/test_modelcontext.py
78
62
pymc/tests/test_dist_math.py
79
63
pymc/tests/test_minibatches.py
80
64
pymc/tests/test_pickling.py
81
- pymc/tests/test_updates.py
82
65
pymc/tests/test_transforms.py
83
- pymc/tests/test_smc.py
84
- pymc/tests/test_mixture.py
85
-
86
- - |
87
66
pymc/tests/test_parallel_sampling.py
88
- pymc/tests/test_sampling.py
89
- pymc/tests/test_tuning.py
90
- pymc/tests/test_posteriors.py
91
- pymc/tests/test_step.py
92
67
93
68
- |
94
- pymc/tests/test_idata_conversion.py
95
69
pymc/tests/test_distributions_random.py
96
70
pymc/tests/test_distributions_timeseries.py
97
71
pymc/tests/test_gp.py
98
72
pymc/tests/test_model.py
99
73
pymc/tests/test_model_graph.py
100
74
pymc/tests/test_ode.py
101
- pymc/tests/test_posdef_sym.py
102
75
pymc/tests/test_profile.py
103
76
pymc/tests/test_quadpotential.py
104
- pymc/tests/test_shape_handling.py
105
- pymc/tests/test_missing.py
106
77
107
78
fail-fast : false
108
79
runs-on : ${{ matrix.os }}
@@ -167,27 +138,10 @@ jobs:
167
138
os : [windows-latest]
168
139
floatx : [float32, float64]
169
140
test-subset :
170
- - |
171
- pymc/tests/test_initial_point.py
172
- pymc/tests/test_distributions_random.py
173
- pymc/tests/test_distributions_moments.py
174
- pymc/tests/test_distributions_timeseries.py
175
- pymc/tests/test_variational_inference.py
176
- - |
177
- pymc/tests/test_parallel_sampling.py
178
- pymc/tests/test_sampling.py
179
- pymc/tests/test_tuning.py
180
- pymc/tests/test_shared.py
181
- pymc/tests/test_types.py
182
- - |
183
- pymc/tests/test_gp.py
184
- pymc/tests/test_ode.py
185
- - |
186
- pymc/tests/test_model.py
187
- pymc/tests/test_modelcontext.py
188
- pymc/tests/test_model_graph.py
189
- pymc/tests/test_pickling.py
190
- pymc/tests/test_profile.py
141
+ - pymc/tests/test_variational_inference.py pymc/tests/test_initial_point.py
142
+ - pymc/tests/test_pickling.py pymc/tests/test_profile.py pymc/tests/test_step.py
143
+ - pymc/tests/test_gp.py pymc/tests/test_ode.py pymc/tests/test_smc.py pymc/tests/test_parallel_sampling.py
144
+ - pymc/tests/test_sampling.py pymc/tests/test_posteriors.py
191
145
192
146
fail-fast : false
193
147
runs-on : ${{ matrix.os }}
@@ -256,16 +210,15 @@ jobs:
256
210
test-subset :
257
211
- |
258
212
pymc/tests/test_parallel_sampling.py
259
- pymc/tests/test_posteriors.py
213
+ pymc/tests/test_data_container.py
214
+ pymc/tests/test_missing.py
215
+
216
+ - |
260
217
pymc/tests/test_sampling.py
261
218
262
219
- |
263
- pymc/tests/test_data_container.py
264
220
pymc/tests/test_idata_conversion.py
265
- pymc/tests/test_missing.py
266
- pymc/tests/test_model.py
267
- pymc/tests/test_shape_handling.py
268
- pymc/tests/test_shared.py
221
+ pymc/tests/test_updates.py
269
222
fail-fast : false
270
223
runs-on : ${{ matrix.os }}
271
224
env :
0 commit comments