about summary refs log tree commit diff
path: root/pkgs/development/python-modules/quart/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/quart/default.nix')
-rw-r--r--pkgs/development/python-modules/quart/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/quart/default.nix b/pkgs/development/python-modules/quart/default.nix
index 2e886b151ec6..5a79054e8951 100644
--- a/pkgs/development/python-modules/quart/default.nix
+++ b/pkgs/development/python-modules/quart/default.nix
@@ -79,6 +79,11 @@ buildPythonPackage rec {
     pytestCheckHook
   ];
 
+  pytestFlagsArray = [
+    # pytest.PytestRemovedIn8Warning: Passing None has been deprecated.
+    "-W" "ignore::pytest.PytestRemovedIn8Warning"
+  ];
+
   meta = with lib; {
     description = "An async Python micro framework for building web applications";
     mainProgram = "quart";