mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-01 09:44:18 +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
|
||||
"test_version"
|
||||
"test_package_version"
|
||||
] ++ lib.optionals (stdenv.isDarwin) [
|
||||
# racy test
|
||||
"test_sched"
|
||||
"test_sched_error"
|
||||
];
|
||||
|
||||
disabledTestPaths = [
|
||||
@ -199,7 +195,8 @@ buildPythonPackage rec {
|
||||
];
|
||||
|
||||
pytestFlagsArray = [
|
||||
"-o cache_dir=$TMPDIR"
|
||||
"-o" "cache_dir=$TMPDIR"
|
||||
"-m" "'not timing'"
|
||||
];
|
||||
|
||||
postCheck = ''
|
||||
|
Loading…
Reference in New Issue
Block a user