Skip to content

Commit 795f9e2

Browse files
committed
Tests: test_plugins_status_app started tripping on Grafana < 10
1 parent fbd8a89 commit 795f9e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/test_commands.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -625,8 +625,8 @@ def test_plugins_status_app(grafana_version, docker_grafana, capsys, caplog):
625625
"""
626626
Verify the plugin status (metrics endpoint and health check) on a 3rd-party "app" plugin.
627627
"""
628-
if version.parse(grafana_version) < version.parse("8"):
629-
raise pytest.skip(f"Plugin status inquiry only works on Grafana 8 and newer")
628+
if version.parse(grafana_version) < version.parse("10"):
629+
raise pytest.skip(f"Plugin status inquiry only works on Grafana 10 and newer")
630630

631631
# Before conducting a plugin status test, install a non-internal one.
632632
grafana = grafana_client.GrafanaApi.from_url(url=docker_grafana, timeout=15)

0 commit comments

Comments
 (0)