summary refs log tree commit diff
path: root/pkgs/development/python-modules/pytest-testmon
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-07-21 04:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-07-21 04:20:00 -0500
commit94ae9f4ed542d5171104f551919b8db936123147 (patch)
treec47d0c25e2d588409a13800a0ef7a6255f44cd71 /pkgs/development/python-modules/pytest-testmon
parent104f8a0e1a17a894b320f86add409d9aebb36fe4 (diff)
downloadnixpkgs-94ae9f4ed542d5171104f551919b8db936123147.tar
nixpkgs-94ae9f4ed542d5171104f551919b8db936123147.tar.gz
nixpkgs-94ae9f4ed542d5171104f551919b8db936123147.tar.bz2
nixpkgs-94ae9f4ed542d5171104f551919b8db936123147.tar.lz
nixpkgs-94ae9f4ed542d5171104f551919b8db936123147.tar.xz
nixpkgs-94ae9f4ed542d5171104f551919b8db936123147.tar.zst
nixpkgs-94ae9f4ed542d5171104f551919b8db936123147.zip
pythonPackages.pytest-testmon: 0.9.16 -> 0.9.18
Diffstat (limited to 'pkgs/development/python-modules/pytest-testmon')
-rw-r--r--pkgs/development/python-modules/pytest-testmon/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/pytest-testmon/default.nix b/pkgs/development/python-modules/pytest-testmon/default.nix
index 1a4cc260ff4..17fb56a0588 100644
--- a/pkgs/development/python-modules/pytest-testmon/default.nix
+++ b/pkgs/development/python-modules/pytest-testmon/default.nix
@@ -7,11 +7,11 @@
 
 buildPythonPackage rec {
   pname = "pytest-testmon";
-  version = "0.9.16";
+  version = "0.9.18";
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "df00594e55f8f8f826e0e345dc23863ebac066eb749f8229c515a0373669c5bb";
+    sha256 = "05648f9b22aeeda9d32e61b46fa78c9ff28f217d69005b3b19ffb75d5992187e";
   };
 
   buildInputs = [ pytest ];
@@ -21,7 +21,7 @@ buildPythonPackage rec {
   checkInputs = [ pytest ];
 
   checkPhase = ''
-    pytest test
+    pytest --deselect=test/test_testmon.py::TestmonDeselect::test_dependent_testmodule
   '';
 
   meta = with lib; {