mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-25 17:55:21 +00:00
python3Packages.rq: disable racy test
It reaps a worker and checks if it has been removed right after, but this
is apparently racy.
(cherry picked from commit 56913ae775)
This commit is contained in:
committed by
Vladimír Čunát
parent
4786402ab9
commit
f7d85f7b37
@@ -76,6 +76,10 @@ buildPythonPackage (finalAttrs: {
|
||||
# PermissionError: [Errno 13] Permission denied: '/tmp/rq-tests.txt'
|
||||
"test_deleted_jobs_arent_executed"
|
||||
"test_suspend_worker_execution"
|
||||
]
|
||||
++ lib.optionals stdenv.hostPlatform.isLinux [
|
||||
# no delay between reaping worker and checking; racy
|
||||
"test_reap_workers"
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "rq" ];
|
||||
|
||||
Reference in New Issue
Block a user