vdirsyncer: disable flaky test
Disables sync_test:test_create_collection, a flaky test which exceeds its deadline and breaks the build on hydra, e.g: https://hydra.nixos.org/build/130683519/nixlog/1 Upstream vdirsyncer issue: https://github.com/pimutils/vdirsyncer/issues/837
This commit is contained in:
parent
2247d824fe
commit
64a59a0854
@ -53,7 +53,10 @@ buildPythonPackage rec {
|
|||||||
export DETERMINISTIC_TESTS=true
|
export DETERMINISTIC_TESTS=true
|
||||||
'';
|
'';
|
||||||
|
|
||||||
disabledTests = [ "test_verbosity" ];
|
disabledTests = [
|
||||||
|
"test_verbosity"
|
||||||
|
"test_create_collections" # Flaky test exceeds deadline on hydra: https://github.com/pimutils/vdirsyncer/issues/837
|
||||||
|
];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://github.com/pimutils/vdirsyncer";
|
homepage = "https://github.com/pimutils/vdirsyncer";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user