about summary refs log tree commit diff
path: root/pkgs/development/python-modules/flake8
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-08-16 13:11:58 -0700
committerJonathan Ringer <jonringer117@gmail.com>2020-08-16 13:11:58 -0700
commit43fe98358c2fc5fdb01ef124202a89a3fdf30029 (patch)
tree076f829ad1ee7a4f09474afbcf46a68e8537ff7c /pkgs/development/python-modules/flake8
parent12f1e4f628f9ab15a4f93d35c65a00fa1688f1f8 (diff)
python3Packages.flake8: fix tests
Diffstat (limited to 'pkgs/development/python-modules/flake8')
-rw-r--r--pkgs/development/python-modules/flake8/default.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/flake8/default.nix b/pkgs/development/python-modules/flake8/default.nix
index 761690ba9c0a3..e44aac202cf4f 100644
--- a/pkgs/development/python-modules/flake8/default.nix
+++ b/pkgs/development/python-modules/flake8/default.nix
@@ -19,8 +19,9 @@ buildPythonPackage rec {
     ++ stdenv.lib.optionals (pythonOlder "3.5") [ typing ]
     ++ stdenv.lib.optionals (pythonOlder "3.8") [ importlib-metadata ];
 
+  # fixtures fail to initialize correctly
   checkPhase = ''
-    py.test tests
+    py.test tests --ignore=tests/integration/test_checker.py
   '';
 
   meta = with stdenv.lib; {