about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorSamuel Ainsworth <skainsworth@gmail.com>2023-09-21 17:40:08 -0400
committerGitHub <noreply@github.com>2023-09-21 17:40:08 -0400
commit42efd8d7124b00e50aa7aafa6925118ce3afc74e (patch)
tree8e5085a61eb16538e9b89505ce40f94ed89787f2 /pkgs
parent21c1f3920a6dc43725d6fbfc2796524728a6ec81 (diff)
parentbddafba6a54a4ea07428a6ff0713898f81b25cca (diff)
Merge pull request #255992 from samuela/samuela/jax
python3Packages.jax: remove pytest-xdist
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/jax/default.nix6
1 files changed, 0 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/jax/default.nix b/pkgs/development/python-modules/jax/default.nix
index 0ad58dc035874..a92148ada6bbc 100644
--- a/pkgs/development/python-modules/jax/default.nix
+++ b/pkgs/development/python-modules/jax/default.nix
@@ -12,7 +12,6 @@
 , numpy
 , opt-einsum
 , pytestCheckHook
-, pytest-xdist
 , pythonOlder
 , scipy
 , stdenv
@@ -62,18 +61,13 @@ buildPythonPackage rec {
     jaxlib'
     matplotlib
     pytestCheckHook
-    pytest-xdist
   ];
 
-  # high parallelism will result in the tests getting stuck
-  dontUsePytestXdist = true;
-
   # NOTE: Don't run the tests in the expiremental directory as they require flax
   # which creates a circular dependency. See https://discourse.nixos.org/t/how-to-nix-ify-python-packages-with-circular-dependencies/14648/2.
   # Not a big deal, this is how the JAX docs suggest running the test suite
   # anyhow.
   pytestFlagsArray = [
-    "--numprocesses=4"
     "-W ignore::DeprecationWarning"
     "tests/"
   ];