about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2023-07-19 15:50:57 +0200
committerMartin Weinelt <hexa@darmstadt.ccc.de>2023-07-28 12:13:28 +0200
commit470db3a7bda494e2233bb9c29052f55302cfe2cc (patch)
treeea1905d06c26cdca4854fe8f773c2b71fbf82f65
parent23d55b922a176e9221f4dae111107fd3f8eb127a (diff)
python310Packages.django-oauth-toolkit: disable pytest-xdist for now
-rw-r--r--pkgs/development/python-modules/django-oauth-toolkit/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/django-oauth-toolkit/default.nix b/pkgs/development/python-modules/django-oauth-toolkit/default.nix
index 5a2a8e5786d66..ce03a1330f5f5 100644
--- a/pkgs/development/python-modules/django-oauth-toolkit/default.nix
+++ b/pkgs/development/python-modules/django-oauth-toolkit/default.nix
@@ -47,10 +47,12 @@ buildPythonPackage rec {
 
   DJANGO_SETTINGS_MODULE = "tests.settings";
 
+  # xdist is disabled right now because it can cause race conditions on high core machines
+  # https://github.com/jazzband/django-oauth-toolkit/issues/1300
   nativeCheckInputs = [
     djangorestframework
     pytest-django
-    pytest-xdist
+    # pytest-xdist
     pytest-mock
     pytestCheckHook
   ];