From e210cbdd9816938f7b19a3adffa6036bbacb17df Mon Sep 17 00:00:00 2001 From: Samarpan Harit Date: Sat, 7 Dec 2024 22:30:12 +0530 Subject: [PATCH] Restructure folder structure for todo tests (#5) --- todo/tests/unit/views/__init__.py | 1 + todo/tests/unit/{ => views}/test_health.py | 0 2 files changed, 1 insertion(+) create mode 100644 todo/tests/unit/views/__init__.py rename todo/tests/unit/{ => views}/test_health.py (100%) diff --git a/todo/tests/unit/views/__init__.py b/todo/tests/unit/views/__init__.py new file mode 100644 index 0000000..84a4d93 --- /dev/null +++ b/todo/tests/unit/views/__init__.py @@ -0,0 +1 @@ +# Added this because without this file Django isn't able to auto detect the test files diff --git a/todo/tests/unit/test_health.py b/todo/tests/unit/views/test_health.py similarity index 100% rename from todo/tests/unit/test_health.py rename to todo/tests/unit/views/test_health.py