File tree Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Expand file tree Collapse file tree 1 file changed +15
-6
lines changed Original file line number Diff line number Diff line change @@ -181,10 +181,15 @@ jobs:
181181 run : |
182182 set -e
183183 python3 -m venv .venv
184- source .venv/Scripts /activate
185- uv pip install " nutpie[all]" --find-links dist --force-reinstall
184+ source .venv/bin /activate
185+ uv pip install ' nutpie[stan]' --find-links dist --force-reinstall
186186 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
188193
189194 macos :
190195 runs-on : ${{ matrix.platform.runner }}
@@ -226,10 +231,14 @@ jobs:
226231 set -e
227232 python3 -m venv .venv
228233 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
230235 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
233242 sdist :
234243 runs-on : ubuntu-latest
235244 steps :
You can’t perform that action at this time.
0 commit comments