python3Packages.intake: disable flaky darwin test
This commit is contained in:
parent
914813789d
commit
2f2791faa1
1 changed files with 7 additions and 0 deletions
|
@ -21,6 +21,7 @@
|
|||
, pythonOlder
|
||||
, pyyaml
|
||||
, requests
|
||||
, stdenv
|
||||
, tornado
|
||||
}:
|
||||
|
||||
|
@ -84,6 +85,12 @@ buildPythonPackage rec {
|
|||
"http"
|
||||
"test_read_pattern"
|
||||
"test_remote_arr"
|
||||
"test_flatten_flag"
|
||||
# Timing-based, flaky on darwin and possibly others
|
||||
"TestServerV1Source.test_idle_timer"
|
||||
] ++ lib.optionals (stdenv.isDarwin && lib.versionOlder stdenv.hostPlatform.darwinMinVersion "10.13") [
|
||||
# Flaky with older low-res mtime on darwin < 10.13 (#143987)
|
||||
"test_second_load_timestamp"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
|
Loading…
Reference in a new issue