python311Packages.aws-encryption-sdk: disable failing test

This commit is contained in:
Martin Weinelt 2024-03-24 20:15:11 +01:00
parent 7d6e33f820
commit 375a4132df
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759
1 changed files with 5 additions and 4 deletions

View File

@ -41,16 +41,17 @@ buildPythonPackage rec {
pytestCheckHook
];
pytestFlagsArray = [
"-W" "ignore::pytest.PytestRemovedIn8Warning"
];
disabledTestPaths = [
# Tests require networking
"examples"
"test/integration"
];
disabledTests = [
# pytest 8 compat issue
"test_happy_version"
];
pythonImportsCheck = [
"aws_encryption_sdk"
];