Skip to content

Commit 5b33100

Browse files
Update test configuration to run all tests
- Remove courses.tests restriction from Makefile - Add data/tests to pytest testpaths 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent e10bfff commit 5b33100

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ user:
2626

2727
tests: ## Run tests
2828
tests:
29-
uv run python manage.py test courses.tests --timing --durations 30
29+
uv run python manage.py test --timing --durations 30
3030

3131

3232
data: ## Add data to database

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,5 +38,6 @@ DJANGO_SETTINGS_MODULE = "course_management.settings"
3838
python_files = ["test_*.py"]
3939

4040
testpaths = [
41-
"courses/tests"
41+
"courses/tests",
42+
"data/tests",
4243
]

0 commit comments

Comments
 (0)