mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
python313Packages.datadog: disable failing test
This commit is contained in:
parent
8152cf0acc
commit
63fd904e5d
1 changed files with 11 additions and 5 deletions
|
@ -9,6 +9,7 @@
|
||||||
pytest-vcr,
|
pytest-vcr,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
python-dateutil,
|
python-dateutil,
|
||||||
|
pythonAtLeast,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
requests,
|
requests,
|
||||||
vcrpy,
|
vcrpy,
|
||||||
|
@ -48,11 +49,16 @@ buildPythonPackage rec {
|
||||||
"tests/integration/api/test_*.py"
|
"tests/integration/api/test_*.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTests = [
|
disabledTests =
|
||||||
"test_default_settings_set"
|
[
|
||||||
# https://github.com/DataDog/datadogpy/issues/746
|
"test_default_settings_set"
|
||||||
"TestDogshell"
|
# 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" ];
|
pythonImportsCheck = [ "datadog" ];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue