-
Notifications
You must be signed in to change notification settings - Fork 104
Expand file tree
/
Copy pathnoxfile.py
More file actions
46 lines (40 loc) · 1.11 KB
/
noxfile.py
File metadata and controls
46 lines (40 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#
# https://github.com/wntrblm/nox/
# Documentation: https://nox.thea.codes/
#
import nox
from nox.sessions import Session
PYTHON_VERSIONS = ('3.14', '3.13', '3.12', '3.11')
DJANGO_VERSIONS = ('5.2', '5.1', '4.2')
# Python 3.14 needs Django 5.2+
EXCLUDED_COMBINATIONS = [
('3.14', '5.1'),
('3.14', '4.2'),
]
@nox.session(
python=PYTHON_VERSIONS,
venv_backend='uv',
reuse_venv=True,
download_python='auto',
)
@nox.parametrize('django', DJANGO_VERSIONS)
def tests(session: Session, django: str):
if (session.python, django) in EXCLUDED_COMBINATIONS:
session.skip('Python 3.14 needs Django 5.2+')
session.install('uv')
session.run(
'uv',
'sync',
'--all-extras',
'--python',
session.python,
env={'UV_PROJECT_ENVIRONMENT': session.virtualenv.location},
)
session.run(
'uv',
'pip',
'install',
f'django>={django},<={django}.999',
env={'UV_PROJECT_ENVIRONMENT': session.virtualenv.location},
)
session.run('python', '-m', 'coverage', 'run', '--context', f'py{session.python}-django{django}')