python313Packages.datadog: disable failing test
This commit is contained in:
@@ -9,6 +9,7 @@
|
||||
pytest-vcr,
|
||||
pytestCheckHook,
|
||||
python-dateutil,
|
||||
pythonAtLeast,
|
||||
pythonOlder,
|
||||
requests,
|
||||
vcrpy,
|
||||
@@ -48,11 +49,16 @@ buildPythonPackage rec {
|
||||
"tests/integration/api/test_*.py"
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
"test_default_settings_set"
|
||||
# https://github.com/DataDog/datadogpy/issues/746
|
||||
"TestDogshell"
|
||||
];
|
||||
disabledTests =
|
||||
[
|
||||
"test_default_settings_set"
|
||||
# https://github.com/DataDog/datadogpy/issues/746
|
||||
"TestDogshell"
|
||||
]
|
||||
++ lib.optionals (pythonAtLeast "3.13") [
|
||||
# https://github.com/DataDog/datadogpy/issues/880
|
||||
"test_timed_coroutine"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "datadog" ];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user