From 1c21d655ba19246e0f65f885303f547a3a920085 Mon Sep 17 00:00:00 2001 From: Monika Kairaityte Date: Sun, 19 Jan 2025 20:59:16 +0200 Subject: [PATCH] tests/integration: Move test "in_pod" to corresponding directory Signed-off-by: Monika Kairaityte --- tests/integration/in_pod/__init__.py | 1 + tests/integration/{ => in_pod}/test_podman_compose_in_pod.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 tests/integration/in_pod/__init__.py rename tests/integration/{ => in_pod}/test_podman_compose_in_pod.py (99%) diff --git a/tests/integration/in_pod/__init__.py b/tests/integration/in_pod/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/tests/integration/in_pod/__init__.py @@ -0,0 +1 @@ + diff --git a/tests/integration/test_podman_compose_in_pod.py b/tests/integration/in_pod/test_podman_compose_in_pod.py similarity index 99% rename from tests/integration/test_podman_compose_in_pod.py rename to tests/integration/in_pod/test_podman_compose_in_pod.py index ed57135..88b1a40 100644 --- a/tests/integration/test_podman_compose_in_pod.py +++ b/tests/integration/in_pod/test_podman_compose_in_pod.py @@ -8,7 +8,7 @@ from tests.integration.test_utils import RunSubprocessMixin def base_path(): """Returns the base path for the project""" - return os.path.dirname(os.path.dirname(os.path.dirname(__file__))) + return os.path.dirname(os.path.dirname(os.path.dirname(os.path.dirname(__file__)))) def test_path():