diff --git a/.cirrus.yml b/.cirrus.yml index c9fa7386..52b4e6aa 100644 --- a/.cirrus.yml +++ b/.cirrus.yml @@ -169,4 +169,4 @@ benchmark_task: - export CONDA_OVERRIDE_LINUX="$(uname -r | cut -d'+' -f1)" - nox --session=tests --install-only - export DATA_GEN_PYTHON=$(realpath $(find .nox -path "*tests*bin/python")) - - nox --session="benchmarks(branch)" -- "${CIRRUS_BASE_SHA}" + - nox --no-reuse-existing-virtualenvs --session="benchmarks(branch)" -- "${CIRRUS_BASE_SHA}" diff --git a/noxfile.py b/noxfile.py index 91188b8c..440e3ddd 100644 --- a/noxfile.py +++ b/noxfile.py @@ -337,7 +337,7 @@ def tests(session: nox.sessions.Session): session.run("pytest") -@nox.session(reuse_venv=False) +@nox.session @nox.parametrize( "run_type", ["branch", "sperf", "custom"],