We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd60902 commit 9ee3736Copy full SHA for 9ee3736
ydb/functional_tests/basic/tests-metrics/test_metrics.py
@@ -1,3 +1,4 @@
1
+import os
2
import re
3
4
import pytest
@@ -50,6 +51,7 @@ def _hide_metrics_values(metrics: str) -> str:
50
51
return '\n'.join(line.rsplit('\t', 1)[0] for line in metrics.splitlines())
52
53
54
+@pytest.mark.skipif(not os.environ.get('TESTSUITE_ARCADIA_RUN'), reason='Native metrics flap in the outer world')
55
async def test_metrics(monitor_client, load, force_metrics_to_appear):
56
ground_truth = _normalize_metrics(load('metrics_values.txt'))
57
all_metrics = await monitor_client.metrics_raw(output_format='pretty')
0 commit comments