Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
python-version:
- "3.14"
django-version:
- "6.1a1"
- "6.1"
runs-on: ${{ matrix.os }}
services:
redis:
Expand All @@ -39,7 +39,7 @@ jobs:
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: uv run --with django~=${{ matrix.django-version }} pytest -m "not benchmark"
- run: uv run --with django~=${{ matrix.django-version }}.0 pytest -m "not benchmark"
- uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -50,7 +50,7 @@ jobs:
os:
- "ubuntu-latest"
django-version:
- "6.1a1"
- "6.1"
extra:
- "inspector"
runs-on: ${{ matrix.os }}
Expand All @@ -67,7 +67,7 @@ jobs:
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: uv run --extra ${{ matrix.extra }} --with django~=${{ matrix.django-version }} pytest -m "not benchmark"
- run: uv run --extra ${{ matrix.extra }} --with django~=${{ matrix.django-version }}.0 pytest -m "not benchmark"
- uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
2 changes: 1 addition & 1 deletion AGENTS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ uv run manage.py threadmill worker # run the worker pool
uv run manage.py threadmill inspector # launch the textual TUI inspector
```

CI additionally pins Django per matrix step: `uv run --with django~=6.1a1 pytest -m "not benchmark"`.
CI additionally pins Django per matrix step: `uv run --with django~=6.1 pytest -m "not benchmark"`.

Run a single test by node ID, e.g. `uv run pytest tests/test_command.py::TestCommand::test_add_arguments__register_all_worker_options`.

Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ classifiers = [
"Topic :: Text Processing :: Markup :: Markdown",
]
dynamic = [ "description", "version" ]
dependencies = [ "django>=6" ]
dependencies = [ "django>=6.1" ]
optional-dependencies.inspector = [
"textual>=8.2.7",
]
Expand Down Expand Up @@ -84,7 +84,7 @@ lint.isort.split-on-trailing-comma = true
lint.pydocstyle.convention = "pep257"

[tool.pytest]
ini_options.minversion = "6.1a1"
ini_options.minversion = "6.1"
ini_options.testpaths = [ "tests" ]
ini_options.addopts = """\
--cov --cov-report=xml --cov-report=term --tb=short -rxs --benchmark-autosave --benchmark-group-by=fullname \
Expand Down
Loading