diff --git a/tests/test_run_all.py b/tests/script_run_all.py similarity index 99% rename from tests/test_run_all.py rename to tests/script_run_all.py index b160624..80d0866 100644 --- a/tests/test_run_all.py +++ b/tests/script_run_all.py @@ -163,5 +163,5 @@ def main(): ) -def test_run_whole(): +if __name__ == "__main__": main() diff --git a/tests/test_run.py b/tests/test_run.py index a545e9a..71ffd53 100644 --- a/tests/test_run.py +++ b/tests/test_run.py @@ -16,9 +16,9 @@ from neural_network_model.process_data import Preprocessing -@pytest.mark.skip +@pytest.mark.skip(reason="no way of currently testing this") def test_run(): - # check if a dir name test_resouces exists if not create one + # check if a dir name test_resources exists if not create one if not os.path.exists(Path(__file__).parent / "test_resources"): os.mkdir(Path(__file__).parent / "test_resources")