python312Packages.aspectlib: ignore deprecation warnings in tests
This commit is contained in:
parent
7995ab1706
commit
d903bdedd6
1 changed files with 6 additions and 2 deletions
|
@ -16,7 +16,7 @@ buildPythonPackage rec {
|
|||
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
format = "pyproject";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
|
@ -47,12 +47,16 @@ buildPythonPackage rec {
|
|||
"aspectlib.test"
|
||||
];
|
||||
|
||||
checkInputs = [
|
||||
nativeCheckInputs = [
|
||||
process-tests
|
||||
pytestCheckHook
|
||||
tornado
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
"-W ignore::DeprecationWarning"
|
||||
];
|
||||
|
||||
__darwinAllowLocalNetworking = true;
|
||||
|
||||
meta = {
|
||||
|
|
Loading…
Reference in a new issue