python3Packages.devtools: ignore pytest8 deprecation warning
This commit is contained in:
parent
ba276cf1e6
commit
6194910f2e
1 changed files with 5 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue