From a8499cd52e23958a555ee0f9e34abb7711b5203f Mon Sep 17 00:00:00 2001 From: Dor Harpaz Date: Thu, 28 Nov 2024 13:12:23 +0200 Subject: [PATCH] Move internal tests to internal folder --- tests/{ => internal}/test_notebook_timeouts.py | 2 +- tests/{ => internal}/test_paths_for_docs.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename tests/{ => internal}/test_notebook_timeouts.py (95%) rename tests/{ => internal}/test_paths_for_docs.py (100%) diff --git a/tests/test_notebook_timeouts.py b/tests/internal/test_notebook_timeouts.py similarity index 95% rename from tests/test_notebook_timeouts.py rename to tests/internal/test_notebook_timeouts.py index eaa5b707..70aa64dd 100644 --- a/tests/test_notebook_timeouts.py +++ b/tests/internal/test_notebook_timeouts.py @@ -6,7 +6,7 @@ Seconds = float -ROOT = Path(subprocess.getoutput("git rev-parse --show-toplevel")) # noqa: S605 +ROOT = Path(__file__).parents[2] TIMEOUTS_FILE = "timeouts.yaml" TIMEOUTS_PATH = ROOT / "tests" / "resources" / TIMEOUTS_FILE diff --git a/tests/test_paths_for_docs.py b/tests/internal/test_paths_for_docs.py similarity index 100% rename from tests/test_paths_for_docs.py rename to tests/internal/test_paths_for_docs.py