python312Packages.amqp: disable flaky test on darwin (#358392)
This commit is contained in:
commit
ea0fa35922
@ -1,4 +1,5 @@
|
||||
{
|
||||
stdenv,
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchPypi,
|
||||
@ -29,10 +30,15 @@ buildPythonPackage rec {
|
||||
pytest-rerunfailures
|
||||
];
|
||||
|
||||
disabledTests = [
|
||||
# Requires network access
|
||||
"test_rmq.py"
|
||||
];
|
||||
disabledTests =
|
||||
[
|
||||
# Requires network access
|
||||
"test_rmq.py"
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
||||
# Requires network access but fails on macos only
|
||||
"test_connection.py"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "amqp" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user