From 388efbe918e91a2b6220b6a054b405d9191aaa81 Mon Sep 17 00:00:00 2001 From: lewis_yan Date: Thu, 2 Apr 2026 09:56:29 +0800 Subject: [PATCH] test: add pytest.ini configuration --- backend/pytest.ini | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 backend/pytest.ini diff --git a/backend/pytest.ini b/backend/pytest.ini new file mode 100644 index 0000000..6062e09 --- /dev/null +++ b/backend/pytest.ini @@ -0,0 +1,7 @@ +[pytest] +DJANGO_SETTINGS_MODULE = application.settings +python_files = test_*.py +python_classes = Test* +python_functions = test_* +addopts = -v --tb=short +testpaths = apps tests