about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-17 18:43:47 +0100
committerMartin Weinelt <hexa@darmstadt.ccc.de>2024-03-17 18:43:47 +0100
commita4120ecc95f8570f19bed92887d2fe0bb799fa47 (patch)
treec6acd07437c32765719b565142fd2279bcd6cba8 /pkgs/development
parenta0882c84d38ac481b448da4194c7b0f8116278f6 (diff)
downloadnixlib-a4120ecc95f8570f19bed92887d2fe0bb799fa47.tar
nixlib-a4120ecc95f8570f19bed92887d2fe0bb799fa47.tar.gz
nixlib-a4120ecc95f8570f19bed92887d2fe0bb799fa47.tar.bz2
nixlib-a4120ecc95f8570f19bed92887d2fe0bb799fa47.tar.lz
nixlib-a4120ecc95f8570f19bed92887d2fe0bb799fa47.tar.xz
nixlib-a4120ecc95f8570f19bed92887d2fe0bb799fa47.tar.zst
nixlib-a4120ecc95f8570f19bed92887d2fe0bb799fa47.zip
python311Packages.favicon: suppress pytest8 warnings
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/python-modules/favicon/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/favicon/default.nix b/pkgs/development/python-modules/favicon/default.nix
index 1b42710b16fc..0800994eb61d 100644
--- a/pkgs/development/python-modules/favicon/default.nix
+++ b/pkgs/development/python-modules/favicon/default.nix
@@ -34,6 +34,10 @@ buildPythonPackage rec {
     requests-mock
   ];
 
+  pytestFlagsArray = [
+    "-W" "ignore::pytest.PytestRemovedIn8Warning"
+  ];
+
   pythonImportsCheck = [
     "favicon"
   ];