Skip to content
Draft
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: 7 additions & 1 deletion .github/workflows/build-djlint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
# 1.45.0 (test_docs.py, test_readme.py, and two tests in
# test_cli.py) that check the docs' examples against the real
# linter/formatter/CLI output.
CIBW_TEST_SOURCES: tests pytest.toml pyproject.toml docs README.md src/djlint/rules.yaml
CIBW_TEST_SOURCES: tests pytest.toml pyproject.toml docs README.md src/djlint/rules.yaml src/djlint/settings.py
# Upstream never tests its wheels; run the suite its CI runs.
# The import assert catches a silently-uncompiled (pure-Python) wheel.
#
Expand All @@ -104,6 +104,12 @@ jobs:
# itself only runs this test on Python 3.10 and 3.15 (see
# .github/workflows/ci.yml's `pytest` matrix), so the whole 3.11-3.14
# range where this reproduces is a gap in their own coverage.
#
# test_the_schema_covers_every_configuration_option reads
# src/djlint/settings.py's source directly (Path("src/djlint/
# settings.py").read_text()) to diff its option list against the
# published JSON schema - same shape as rules.yaml above, just a
# missing CIBW_TEST_SOURCES entry rather than a real test bug.
CIBW_TEST_COMMAND: >-
python -c "import djlint; assert djlint.__file__.endswith('.so'), djlint.__file__"
&& python -m pytest tests --deselect tests/test_djlint/test_djlint.py::test_closed_pipe_is_not_a_crash
Expand Down
1 change: 1 addition & 0 deletions docs/packages/djlint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,4 @@ versions:
- filename: djlint-1.46.1-cp314-cp314t-manylinux_2_31_riscv64.manylinux_2_39_riscv64.whl
sha256: 388b1f5ac2e3b2536c708d70a39c0db8dfe52ef7449af7f2b3ff022b842ad0c2
requires-python: '>=3.10'
- version: 1.46.2
Loading