We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c283db8 commit 61508a6Copy full SHA for 61508a6
1 file changed
tests/metrics/test_metrics.py
@@ -130,8 +130,10 @@ def get_metrics_from_gauge(
130
131
return results
132
133
+RUN_TEST = False
134
135
class BuildInfoTests(unittest.TestCase):
136
+ @unittest.skip_unless(RUN_TEST, "must be enabled")
137
def test_get_build(self) -> None:
138
"""
139
The synapse_build_info metric reports the OS version, Python version,
@@ -150,6 +152,7 @@ def test_get_build(self) -> None:
150
152
151
153
154
class CacheMetricsTests(unittest.HomeserverTestCase):
155
156
def test_cache_metric(self) -> None:
157
158
Caches produce metrics reflecting their state when scraped.
0 commit comments