python310Packages.elastic-apm: fix build on darwin
This commit is contained in:
parent
25ae3a3a8d
commit
6e1d2a55c6
1 changed files with 4 additions and 0 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ lib
|
{ lib
|
||||||
|
, stdenv
|
||||||
, aiohttp
|
, aiohttp
|
||||||
, blinker
|
, blinker
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
|
@ -77,6 +78,9 @@ buildPythonPackage rec {
|
||||||
disabledTestPaths = [
|
disabledTestPaths = [
|
||||||
# Exclude tornado tests
|
# Exclude tornado tests
|
||||||
"tests/contrib/asyncio/tornado/tornado_tests.py"
|
"tests/contrib/asyncio/tornado/tornado_tests.py"
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
# Flaky tests on Darwin
|
||||||
|
"tests/utils/threading_tests.py"
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonImportsCheck = [
|
pythonImportsCheck = [
|
||||||
|
|
Loading…
Reference in a new issue