mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-08 05:03:40 +00:00
python3Packages.psycopg: Disable timing sensitive tests
Our build cluster is often busy and cannot really deal with
This commit is contained in:
parent
7bc841939d
commit
6fb0f96f73
@ -183,10 +183,6 @@ buildPythonPackage rec {
|
|||||||
# don't depend on mypy for tests
|
# don't depend on mypy for tests
|
||||||
"test_version"
|
"test_version"
|
||||||
"test_package_version"
|
"test_package_version"
|
||||||
] ++ lib.optionals (stdenv.isDarwin) [
|
|
||||||
# racy test
|
|
||||||
"test_sched"
|
|
||||||
"test_sched_error"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
disabledTestPaths = [
|
disabledTestPaths = [
|
||||||
@ -199,7 +195,8 @@ buildPythonPackage rec {
|
|||||||
];
|
];
|
||||||
|
|
||||||
pytestFlagsArray = [
|
pytestFlagsArray = [
|
||||||
"-o cache_dir=$TMPDIR"
|
"-o" "cache_dir=$TMPDIR"
|
||||||
|
"-m" "'not timing'"
|
||||||
];
|
];
|
||||||
|
|
||||||
postCheck = ''
|
postCheck = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user