Skip to content
Open
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
10 changes: 10 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,16 @@ jobs:
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}

- name: Test runtime dependencies
run: |
uv run --no-dev -p python${{ matrix.python-version }} -- python -c '
from django_docutils import _internal, lib, template_tags, exc, template, views, __version__
from django_docutils._internal import types
from django_docutils.lib import directives, metadata, roles, templates, tests, transforms, publisher, settings, text, types, utils, views, writers
from django_docutils.templatetags import django_docutils
print("django_docutils version:", __version__)
'

- name: Install dependencies
run: uv sync --all-extras --dev

Expand Down
Loading