about summary refs log tree commit diff
path: root/pkgs/development/python-modules/fire
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-04-10 12:08:03 -0700
committerJon <jonringer@users.noreply.github.com>2020-04-10 12:10:45 -0700
commit877897d0a8edcf1fb06d485d23f588108076da23 (patch)
treeb8278c2f804bc995e75ccbce27f3f7a9019eab7c /pkgs/development/python-modules/fire
parentd1d7f86f6f2b0e0a00ccb60fa3b58a8e4c5ab695 (diff)
python38Packages.fire: disable fragile test
Diffstat (limited to 'pkgs/development/python-modules/fire')
-rw-r--r--pkgs/development/python-modules/fire/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/fire/default.nix b/pkgs/development/python-modules/fire/default.nix
index f53a6a33e9915..6c81a708d57d6 100644
--- a/pkgs/development/python-modules/fire/default.nix
+++ b/pkgs/development/python-modules/fire/default.nix
@@ -16,8 +16,10 @@ buildPythonPackage rec {
 
   checkInputs = [ hypothesis mock python-Levenshtein pytest ];
 
+  # ignore test which asserts exact usage statement, default behavior
+  # changed in python3.8. This can likely be remove >=0.3.1
   checkPhase = ''
-    py.test
+    py.test -k 'not testInitRequiresFlag'
   '';
 
   meta = with stdenv.lib; {