From a36586a7777dc34cb977f81dc2d5bdfa2bebd4b6 Mon Sep 17 00:00:00 2001 From: Dimitri Savineau Date: Mon, 9 Aug 2021 13:38:26 -0400 Subject: [PATCH] tests: rename grafana to monitoring Since the grafana-server group has been renamed to monitoring then changing the associated tests. Signed-off-by: Dimitri Savineau --- tests/conftest.py | 4 ++-- .../test_grafana.py => monitoring/test_monitoring.py} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename tests/functional/tests/{grafana/test_grafana.py => monitoring/test_monitoring.py} (96%) diff --git a/tests/conftest.py b/tests/conftest.py index 68f63e9f7..11a5997fe 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -177,8 +177,8 @@ def pytest_collection_modifyitems(session, config, items): item.add_marker(pytest.mark.nfss) elif "iscsi" in test_path: item.add_marker(pytest.mark.iscsigws) - elif "grafana" in test_path: - item.add_marker(pytest.mark.grafanas) + elif "monitoring" in test_path: + item.add_marker(pytest.mark.monitoring) else: item.add_marker(pytest.mark.all) diff --git a/tests/functional/tests/grafana/test_grafana.py b/tests/functional/tests/monitoring/test_monitoring.py similarity index 96% rename from tests/functional/tests/grafana/test_grafana.py rename to tests/functional/tests/monitoring/test_monitoring.py index fb12009e5..cf2751c06 100644 --- a/tests/functional/tests/grafana/test_grafana.py +++ b/tests/functional/tests/monitoring/test_monitoring.py @@ -1,7 +1,7 @@ import pytest -class TestGrafanas(object): +class TestMonitoring(object): @pytest.mark.dashboard @pytest.mark.no_docker