From d8eb70489cc73ac2f611eb8844dc2546d82aea42 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Thu, 11 Jan 2024 07:38:08 +0100 Subject: [PATCH] python311Packages.equinox: use pytest-xdist to speed up the tests --- pkgs/development/python-modules/equinox/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/equinox/default.nix b/pkgs/development/python-modules/equinox/default.nix index 5121748a7353..92ce388c8765 100644 --- a/pkgs/development/python-modules/equinox/default.nix +++ b/pkgs/development/python-modules/equinox/default.nix @@ -9,6 +9,7 @@ , typing-extensions , beartype , optax +, pytest-xdist , pytestCheckHook }: @@ -40,6 +41,7 @@ buildPythonPackage rec { nativeCheckInputs = [ beartype optax + pytest-xdist pytestCheckHook ];