From c42ad1f487f51ad6032fbdd5b8f1ff78ed4782db Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Thu, 9 Sep 2021 16:01:47 +0200 Subject: [PATCH] Revert "tests: rename grafana to monitoring" This reverts commit a36586a7777dc34cb977f81dc2d5bdfa2bebd4b6. Signed-off-by: Guillaume Abrioux --- tests/conftest.py | 4 ++-- .../test_monitoring.py => grafana/test_grafana.py} | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) rename tests/functional/tests/{monitoring/test_monitoring.py => grafana/test_grafana.py} (96%) diff --git a/tests/conftest.py b/tests/conftest.py index 11a5997fe..68f63e9f7 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 "monitoring" in test_path: - item.add_marker(pytest.mark.monitoring) + elif "grafana" in test_path: + item.add_marker(pytest.mark.grafanas) else: item.add_marker(pytest.mark.all) diff --git a/tests/functional/tests/monitoring/test_monitoring.py b/tests/functional/tests/grafana/test_grafana.py similarity index 96% rename from tests/functional/tests/monitoring/test_monitoring.py rename to tests/functional/tests/grafana/test_grafana.py index cf2751c06..fb12009e5 100644 --- a/tests/functional/tests/monitoring/test_monitoring.py +++ b/tests/functional/tests/grafana/test_grafana.py @@ -1,7 +1,7 @@ import pytest -class TestMonitoring(object): +class TestGrafanas(object): @pytest.mark.dashboard @pytest.mark.no_docker -- 2.39.5