diff --git a/pytest.ini b/pytest.ini index 689ffe7..8b607c0 100644 --- a/pytest.ini +++ b/pytest.ini @@ -8,4 +8,3 @@ markers = ccdc: All test relating to CCDC monitoring testpaths = tests - integration_tests \ No newline at end of file diff --git a/integration_tests/__init__.py b/tests/integration_tests/__init__.py similarity index 100% rename from integration_tests/__init__.py rename to tests/integration_tests/__init__.py diff --git a/integration_tests/conftest.py b/tests/integration_tests/conftest.py similarity index 100% rename from integration_tests/conftest.py rename to tests/integration_tests/conftest.py diff --git a/integration_tests/test_ccdc.py b/tests/integration_tests/test_ccdc.py similarity index 100% rename from integration_tests/test_ccdc.py rename to tests/integration_tests/test_ccdc.py diff --git a/integration_tests/test_monitor.py b/tests/integration_tests/test_monitor.py similarity index 100% rename from integration_tests/test_monitor.py rename to tests/integration_tests/test_monitor.py diff --git a/tests/conftest.py b/tests/unit_tests/conftest.py similarity index 100% rename from tests/conftest.py rename to tests/unit_tests/conftest.py diff --git a/tests/data/RLM_X.csv b/tests/unit_tests/data/RLM_X.csv similarity index 100% rename from tests/data/RLM_X.csv rename to tests/unit_tests/data/RLM_X.csv diff --git a/tests/data/RLM_y.csv b/tests/unit_tests/data/RLM_y.csv similarity index 100% rename from tests/data/RLM_y.csv rename to tests/unit_tests/data/RLM_y.csv diff --git a/tests/data/X.csv b/tests/unit_tests/data/X.csv similarity index 100% rename from tests/data/X.csv rename to tests/unit_tests/data/X.csv diff --git a/tests/data/cusum_result.csv b/tests/unit_tests/data/cusum_result.csv similarity index 100% rename from tests/data/cusum_result.csv rename to tests/unit_tests/data/cusum_result.csv diff --git a/tests/data/dates.csv b/tests/unit_tests/data/dates.csv similarity index 100% rename from tests/data/dates.csv rename to tests/unit_tests/data/dates.csv diff --git a/tests/data/efp_result.csv b/tests/unit_tests/data/efp_result.csv similarity index 100% rename from tests/data/efp_result.csv rename to tests/unit_tests/data/efp_result.csv diff --git a/tests/data/mosum_result.csv b/tests/unit_tests/data/mosum_result.csv similarity index 100% rename from tests/data/mosum_result.csv rename to tests/unit_tests/data/mosum_result.csv diff --git a/tests/data/roc_history_result.csv b/tests/unit_tests/data/roc_history_result.csv similarity index 100% rename from tests/data/roc_history_result.csv rename to tests/unit_tests/data/roc_history_result.csv diff --git a/tests/data/rr_result.csv b/tests/unit_tests/data/rr_result.csv similarity index 100% rename from tests/data/rr_result.csv rename to tests/unit_tests/data/rr_result.csv diff --git a/tests/data/y.csv b/tests/unit_tests/data/y.csv similarity index 100% rename from tests/data/y.csv rename to tests/unit_tests/data/y.csv diff --git a/tests/test_fit_methods.py b/tests/unit_tests/test_fit_methods.py similarity index 100% rename from tests/test_fit_methods.py rename to tests/unit_tests/test_fit_methods.py diff --git a/tests/test_outliers.py b/tests/unit_tests/test_outliers.py similarity index 100% rename from tests/test_outliers.py rename to tests/unit_tests/test_outliers.py diff --git a/tests/test_stats.py b/tests/unit_tests/test_stats.py similarity index 100% rename from tests/test_stats.py rename to tests/unit_tests/test_stats.py diff --git a/tests/test_utils_efp.py b/tests/unit_tests/test_utils_efp.py similarity index 100% rename from tests/test_utils_efp.py rename to tests/unit_tests/test_utils_efp.py