From ba96da962294e2cee9cb16f46116f4478c63c52e Mon Sep 17 00:00:00 2001 From: Andreas Wrede Date: Tue, 12 May 2026 23:52:34 -0400 Subject: [PATCH] refactor: move loose test files out of project root - tests/test_threshold.py: has proper pytest test functions - scripts/test_*.py: manual run scripts with no test functions Co-Authored-By: Claude Sonnet 4.6 --- test_all_plugins.py => scripts/test_all_plugins.py | 0 test_core_plugins.py => scripts/test_core_plugins.py | 0 test_journal.py => scripts/test_journal.py | 0 test_nagios.py => scripts/test_nagios.py | 0 test_plugins.py => scripts/test_plugins.py | 0 test_plugins_manual.py => scripts/test_plugins_manual.py | 0 test_threshold.py => tests/test_threshold.py | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename test_all_plugins.py => scripts/test_all_plugins.py (100%) rename test_core_plugins.py => scripts/test_core_plugins.py (100%) rename test_journal.py => scripts/test_journal.py (100%) rename test_nagios.py => scripts/test_nagios.py (100%) rename test_plugins.py => scripts/test_plugins.py (100%) rename test_plugins_manual.py => scripts/test_plugins_manual.py (100%) rename test_threshold.py => tests/test_threshold.py (100%) diff --git a/test_all_plugins.py b/scripts/test_all_plugins.py similarity index 100% rename from test_all_plugins.py rename to scripts/test_all_plugins.py diff --git a/test_core_plugins.py b/scripts/test_core_plugins.py similarity index 100% rename from test_core_plugins.py rename to scripts/test_core_plugins.py diff --git a/test_journal.py b/scripts/test_journal.py similarity index 100% rename from test_journal.py rename to scripts/test_journal.py diff --git a/test_nagios.py b/scripts/test_nagios.py similarity index 100% rename from test_nagios.py rename to scripts/test_nagios.py diff --git a/test_plugins.py b/scripts/test_plugins.py similarity index 100% rename from test_plugins.py rename to scripts/test_plugins.py diff --git a/test_plugins_manual.py b/scripts/test_plugins_manual.py similarity index 100% rename from test_plugins_manual.py rename to scripts/test_plugins_manual.py diff --git a/test_threshold.py b/tests/test_threshold.py similarity index 100% rename from test_threshold.py rename to tests/test_threshold.py