From 635c6e46411537e457211cf4a9d57bd69e8b5d9f Mon Sep 17 00:00:00 2001 From: lars Date: Wed, 12 Jun 2024 18:20:07 +0200 Subject: [PATCH] remove within-process test parallelization for tox to allow for better outside parallelization this is technically faster, since environment setup can be parallelized as well, but requires to pass the `--parallel auto` flag to tox --- tox.ini | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tox.ini b/tox.ini index de396fb8c..0d7afa5ac 100644 --- a/tox.ini +++ b/tox.ini @@ -36,10 +36,10 @@ set_env = commands = jax: - python -m pytest tests/ -n auto -v -m "not (numpy or tensorflow or torch)" + python -m pytest tests/ -v -m "not (numpy or tensorflow or torch)" numpy: - python -m pytest tests/ -n auto -v -m "not (jax or tensorflow or torch)" + python -m pytest tests/ -v -m "not (jax or tensorflow or torch)" tensorflow: - python -m pytest tests/ -n auto -v -m "not (jax or numpy or torch)" + python -m pytest tests/ -v -m "not (jax or numpy or torch)" torch: - python -m pytest tests/ -n auto -v -m "not (jax or numpy or tensorflow)" + python -m pytest tests/ -v -m "not (jax or numpy or tensorflow)"