Skip to content

Commit 600b168

Browse files
committed
refactor: move Django 5 tests to integration_tests/django5
Move test_project_django5 to integration_tests/django5 to organize integration tests by topic for future additions. Update CI workflow and pytest config to use new path. Add .claude/settings.local.json to .gitignore.
1 parent 19f6571 commit 600b168

File tree

15 files changed

+5
-4
lines changed

15 files changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -90,15 +90,15 @@ jobs:
9090
uses: astral-sh/setup-uv@0c5e2b8115b80b4c7c5ddf6ffdd634974642d182 # v5.4.1
9191
with:
9292
enable-cache: true
93-
pyproject-file: 'test_project_django5/pyproject.toml'
93+
pyproject-file: 'integration_tests/django5/pyproject.toml'
9494

9595
- name: Install Django 5 test project dependencies
9696
shell: bash
97-
working-directory: test_project_django5
97+
working-directory: integration_tests/django5
9898
run: |
9999
UV_PROJECT_ENVIRONMENT=$pythonLocation uv sync
100100
101101
- name: Run Django 5 middleware integration tests
102-
working-directory: test_project_django5
102+
working-directory: integration_tests/django5
103103
run: |
104104
uv run pytest test_middleware.py test_exception_capture.py --verbose

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ pyrightconfig.json
1919
.env
2020
.DS_Store
2121
posthog-python-references.json
22+
.claude/settings.local.json
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)