dmarc-metrics-exporter: disable flaky tests on darwin

This commit is contained in:
Gaetan Lepage
2024-09-06 22:02:58 +02:00
parent 6884353364
commit f13dd1c43a
@@ -1,5 +1,6 @@
{
lib,
stdenv,
python3,
fetchFromGitHub,
}:
@@ -42,6 +43,12 @@ python3.pkgs.buildPythonApplication rec {
requests
];
disabledTests = lib.optionals stdenv.hostPlatform.isDarwin [
# flaky tests
"test_build_info"
"test_prometheus_exporter"
];
disabledTestPaths = [
# require networking
"dmarc_metrics_exporter/tests/test_e2e.py"