python310Packages.pytest-flask: disable flaky test on darwin

This commit is contained in:
Mario Rodas 2023-02-25 09:39:00 +00:00
parent 6e196f1c52
commit 3954f4ea13

View File

@ -1,4 +1,5 @@
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, flask
@ -42,6 +43,10 @@ buildPythonPackage rec {
"pytest_flask"
];
pytestFlagsArray = lib.optionals stdenv.isDarwin [
"--ignore=tests/test_live_server.py"
];
meta = with lib; {
description = "A set of pytest fixtures to test Flask applications";
homepage = "https://pytest-flask.readthedocs.io/";