Skip to content

Commit c320c63

Browse files
committed
Fix nightly failure
1 parent c212c0b commit c320c63

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

tox.ini

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@ deps =
3333
[testenv:future]
3434
basepython = python3.14
3535
extras = test
36-
commands_pre =
36+
deps =
3737
; Test compatibility with development versions of Django and Wagtail.
38-
; --no-deps stops pip from complaining about incompatible versions.
39-
pip install -U --no-deps \
40-
https://github.com/django/django/archive/refs/heads/main.zip \
41-
https://github.com/wagtail/wagtail/archive/refs/heads/main.zip
42-
pip freeze
38+
https://github.com/django/django/archive/refs/heads/main.zip
39+
https://github.com/wagtail/wagtail/archive/refs/heads/main.zip
40+
commands_pre =
41+
; Install latest django-ninja from GitHub, due to dependency resolution problem
42+
; See https://github.com/vitalik/django-ninja/pull/1749
43+
pip install --no-deps https://github.com/vitalik/django-ninja/archive/refs/heads/master.zip
4344
commands = pytest -rs {posargs}
4445

4546
[testenv:coverage-report]

0 commit comments

Comments
 (0)