about summary refs log tree commit diff
path: root/pkgs/development/python-modules/devtools
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-05 22:08:59 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2022-03-14 00:29:05 +0100
commit6194910f2ec5a40fb233da6f8ca23499193f16d9 (patch)
tree2864a762b386eaef0194930ef47f520403e25a31 /pkgs/development/python-modules/devtools
parentba276cf1e6045782813048441df763d4d26ad31d (diff)
python3Packages.devtools: ignore pytest8 deprecation warning
Diffstat (limited to 'pkgs/development/python-modules/devtools')
-rw-r--r--pkgs/development/python-modules/devtools/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/devtools/default.nix b/pkgs/development/python-modules/devtools/default.nix
index 5d4f0871bf78f..c9e0a79a2413f 100644
--- a/pkgs/development/python-modules/devtools/default.nix
+++ b/pkgs/development/python-modules/devtools/default.nix
@@ -34,6 +34,11 @@ buildPythonPackage rec {
     pytest-mock
   ];
 
+  pytestFlagsArray = [
+    # pytest.PytestRemovedIn8Warning: Passing None has been deprecated.
+    "-W ignore::pytest.PytestRemovedIn8Warning"
+  ];
+
   disabledTests = [
     # Test for Windows32
     "test_print_subprocess"