From 5699a8de514f16c2fdcb7e7f66fb4d8a01eb034d Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Sat, 11 Jan 2025 01:01:25 +0100 Subject: [PATCH] Tests: `test_plugins_status_app` started tripping on Grafana < 10 --- tests/test_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/test_commands.py b/tests/test_commands.py index b21f454..776615d 100644 --- a/tests/test_commands.py +++ b/tests/test_commands.py @@ -625,8 +625,8 @@ def test_plugins_status_app(grafana_version, docker_grafana, capsys, caplog): """ Verify the plugin status (metrics endpoint and health check) on a 3rd-party "app" plugin. """ - if version.parse(grafana_version) < version.parse("8"): - raise pytest.skip(f"Plugin status inquiry only works on Grafana 8 and newer") + if version.parse(grafana_version) < version.parse("10"): + raise pytest.skip(f"Plugin status inquiry only works on Grafana 10 and newer") # Before conducting a plugin status test, install a non-internal one. grafana = grafana_client.GrafanaApi.from_url(url=docker_grafana, timeout=15)