about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-mock
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2022-01-13 21:13:46 -0800
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-01-23 01:09:29 +0100
commit6b93e236882ce51d94814e4ecff187a4e3835384 (patch)
treed035e8deeaf5a9280f309d6cb410fa36521a0153 /pkgs/development/python-modules/pytest-mock
parent13a26ca9307fc37b0858d9098dc2b5220092ccec (diff)
python3Packages.pytest-mock: disable pytest output senstive test
Diffstat (limited to 'pkgs/development/python-modules/pytest-mock')
-rw-r--r--pkgs/development/python-modules/pytest-mock/default.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pytest-mock/default.nix b/pkgs/development/python-modules/pytest-mock/default.nix
index a8127e276f452..7f07ed2b6dd13 100644
--- a/pkgs/development/python-modules/pytest-mock/default.nix
+++ b/pkgs/development/python-modules/pytest-mock/default.nix
@@ -22,6 +22,12 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  disabledTests = [
+    # output of pytest has changed
+    "test_used_with_"
+    "test_plain_stopall"
+  ];
+
   pythonImportsCheck = [ "pytest_mock" ];
 
   meta = with lib; {