lol

vector: disable flaky test

+3 -1
+3 -1
pkgs/tools/misc/vector/default.nix
··· 55 doCheck = !stdenv.isDarwin; 56 # healthcheck_grafana_cloud is trying to make a network access 57 # test_stream_errors is flaky on linux-aarch64 58 checkPhase = '' 59 TZDIR=${tzdata}/share/zoneinfo cargo test \ 60 --no-default-features \ 61 --features ${lib.concatStringsSep "," features} \ 62 -- --test-threads 1 \ 63 --skip=sinks::loki::tests::healthcheck_grafana_cloud \ 64 - --skip=kubernetes::api_watcher::tests::test_stream_errors 65 ''; 66 67 # recent overhauls of DNS support in 0.9 mean that we try to resolve
··· 55 doCheck = !stdenv.isDarwin; 56 # healthcheck_grafana_cloud is trying to make a network access 57 # test_stream_errors is flaky on linux-aarch64 58 + # tcp_with_tls_intermediate_ca is flaky on linux-x86_64 59 checkPhase = '' 60 TZDIR=${tzdata}/share/zoneinfo cargo test \ 61 --no-default-features \ 62 --features ${lib.concatStringsSep "," features} \ 63 -- --test-threads 1 \ 64 --skip=sinks::loki::tests::healthcheck_grafana_cloud \ 65 + --skip=kubernetes::api_watcher::tests::test_stream_errors \ 66 + --skip=sources::socket::test::tcp_with_tls_intermediate_ca 67 ''; 68 69 # recent overhauls of DNS support in 0.9 mean that we try to resolve