From 05d189762728e6ed9c90b1f57896c85b0b7ef70b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laur=C3=A9line=20Gu=C3=A9rin?= Date: Thu, 11 Aug 2022 13:51:28 +0200 Subject: [PATCH] tests: move wcs tests (#68063) --- tests/wcs/__init__.py | 0 tests/{test_wcs.py => wcs/test_all.py} | 5 ++--- tests/{test_wcs_templatetags.py => wcs/test_templatetags.py} | 0 3 files changed, 2 insertions(+), 3 deletions(-) create mode 100644 tests/wcs/__init__.py rename tests/{test_wcs.py => wcs/test_all.py} (99%) rename tests/{test_wcs_templatetags.py => wcs/test_templatetags.py} (100%) diff --git a/tests/wcs/__init__.py b/tests/wcs/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/tests/test_wcs.py b/tests/wcs/test_all.py similarity index 99% rename from tests/test_wcs.py rename to tests/wcs/test_all.py index 525beb8b..9da3a1d2 100644 --- a/tests/test_wcs.py +++ b/tests/wcs/test_all.py @@ -38,9 +38,8 @@ from combo.apps.wcs.models import ( from combo.data.library import get_cell_classes from combo.data.models import CellBase, LinkCell, LinkListCell, Page, ValidityInfo from combo.utils import NothingInCacheException - -from .test_manager import login -from .utils import manager_submit_cell +from tests.test_manager import login +from tests.utils import manager_submit_cell pytestmark = pytest.mark.django_db diff --git a/tests/test_wcs_templatetags.py b/tests/wcs/test_templatetags.py similarity index 100% rename from tests/test_wcs_templatetags.py rename to tests/wcs/test_templatetags.py