File tree Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Expand file tree Collapse file tree 2 files changed +16
-7
lines changed Original file line number Diff line number Diff line change @@ -182,9 +182,14 @@ jobs:
182
182
set -e
183
183
python3 -m venv .venv
184
184
source .venv/Scripts/activate
185
- uv pip install "nutpie[all ]" --find-links dist --force-reinstall
185
+ uv pip install "nutpie[stan ]" --find-links dist --force-reinstall
186
186
uv pip install pytest pytest-timeout
187
- pytest
187
+ pytest -m "stan and not flow"
188
+ uv pip install "nutpie[pymc]" --find-links dist --force-reinstall
189
+ uv pip install jax
190
+ pytest -m "pymc and not flow"
191
+ uv pip install "nutpie[all]" --find-links dist --force-reinstall
192
+ pytest -m flow
188
193
189
194
macos :
190
195
runs-on : ${{ matrix.platform.runner }}
@@ -226,10 +231,14 @@ jobs:
226
231
set -e
227
232
python3 -m venv .venv
228
233
source .venv/bin/activate
229
- uv pip install 'nutpie[all ]' --find-links dist --force-reinstall
234
+ uv pip install 'nutpie[stan ]' --find-links dist --force-reinstall
230
235
uv pip install pytest pytest-timeout
231
- pytest -m "not (flow and stan)" # The stan tests seem to run out of memory on macOS?
232
-
236
+ pytest -m "stan and not flow"
237
+ uv pip install 'nutpie[pymc]' --find-links dist --force-reinstall
238
+ uv pip install jax
239
+ pytest -m "pymc and not flow"
240
+ uv pip install 'nutpie[all]' --find-links dist --force-reinstall
241
+ pytest -m flow
233
242
sdist :
234
243
runs-on : ubuntu-latest
235
244
steps :
Original file line number Diff line number Diff line change @@ -280,7 +280,7 @@ def test_normalizing_flow(kind):
280
280
).with_transform_adapt (
281
281
verbose = True ,
282
282
coupling_type = kind ,
283
- num_layers = 2 ,
283
+ num_layers = 4 ,
284
284
)
285
285
trace = nutpie .sample (
286
286
compiled ,
@@ -311,7 +311,7 @@ def test_normalizing_flow_1d(kind):
311
311
).with_transform_adapt (
312
312
verbose = True ,
313
313
coupling_type = kind ,
314
- num_layers = 2 ,
314
+ num_layers = 4 ,
315
315
)
316
316
trace = nutpie .sample (
317
317
compiled ,
You can’t perform that action at this time.
0 commit comments