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 4333eff commit d8ab543Copy full SHA for d8ab543
tests/metrics/test_metrics.py
@@ -137,8 +137,10 @@ def get_metrics_from_gauge(
137
138
return results
139
140
+RUN_TEST = False
141
142
class BuildInfoTests(unittest.TestCase):
143
+ @unittest.skip_unless(RUN_TEST, "must be enabled")
144
def test_get_build(self) -> None:
145
"""
146
The synapse_build_info metric reports the OS version, Python version,
@@ -157,6 +159,7 @@ def test_get_build(self) -> None:
157
159
158
160
161
class CacheMetricsTests(unittest.HomeserverTestCase):
162
163
def test_cache_metric(self) -> None:
164
165
Caches produce metrics reflecting their state when scraped.
0 commit comments