From 3327390efee9dee3b016ecabb0cb26dc52c8f59f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sandro=20J=C3=A4ckel?= Date: Mon, 15 Jan 2024 00:43:40 +0100 Subject: [PATCH] python311Packages.pytest-django: drop pytest-xdist A handful of tests fails because of this. One of the errors is: django.db.utils.OperationalError: no such table: app_item which suggests that the tests in general don't work in parallel. I don't think that worked since 843ea199a316541433f9de059da8257f1722acc2 see also issue tracker https://github.com/pytest-dev/pytest-django/issues/867 --- pkgs/development/python-modules/pytest-django/default.nix | 2 -- 1 file changed, 2 deletions(-) diff --git a/pkgs/development/python-modules/pytest-django/default.nix b/pkgs/development/python-modules/pytest-django/default.nix index a9c8743badf8..a7f2e38f3362 100644 --- a/pkgs/development/python-modules/pytest-django/default.nix +++ b/pkgs/development/python-modules/pytest-django/default.nix @@ -7,7 +7,6 @@ , django-configurations , pytest , pytestCheckHook -, pytest-xdist }: buildPythonPackage rec { pname = "pytest-django"; @@ -35,7 +34,6 @@ buildPythonPackage rec { nativeCheckInputs = [ django-configurations pytestCheckHook - pytest-xdist ]; preCheck = ''