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>2020-08-16 12:58:27 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-08-16 12:58:27 -0700
commit4e1b2ec50a68fe3534155d0b0b6bbca6f34044e0 (patch)
tree31e96578ffd87409217248c1417d3ac1d45f4a05 /pkgs/development/python-modules/pytest-mock
parente7ab21bdaf75d28da41231475d602373c1b808e3 (diff)
python3Packages.pytest-mock: ignore pytest5 specific test
Diffstat (limited to 'pkgs/development/python-modules/pytest-mock')
-rw-r--r--pkgs/development/python-modules/pytest-mock/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/pytest-mock/default.nix b/pkgs/development/python-modules/pytest-mock/default.nix
index 822910f408397..c21175bf3381b 100644
--- a/pkgs/development/python-modules/pytest-mock/default.nix
+++ b/pkgs/development/python-modules/pytest-mock/default.nix
@@ -27,8 +27,9 @@ buildPythonPackage rec {
     pytest
   ];
 
+  # ignore test which only works with pytest5 output structure
   checkPhase = ''
-    pytest
+    pytest -k 'not detailed_introspection_async'
   '';
 
   meta = with lib; {