-
Notifications
You must be signed in to change notification settings - Fork 9
/
tox.ini
45 lines (36 loc) · 1.01 KB
/
tox.ini
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
[tox]
skipsdist = True
usedevelop = True
envlist =
python{3.8,3.9,3.10,3.11}-django4.2-wagtail{5.2,6.0}-{sqlite,postgres}
python{3.10,3.11,3.12}-django5.0-wagtail{5.2,6.0,main}-{sqlite,postgres}
[gh-actions]
python =
3.8: python3.8
3.9: python3.9
3.10: python3.10
3.11: python3.11
3.12: python3.12
[gh-actions:env]
DATABASE =
postgres: postgres
[flake8]
# E501: Line too long
# W503: line break before binary operator (superseded by W504 line break after binary operator)
ignore = E501,W503
exclude = migrations,node_modules
[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands = coverage run testmanage.py test --deprecation all
deps =
coverage
django4.2: Django>=4.2,<5.0
django5.0: Django>=5.0,<5.1
wagtail5.2: wagtail>=5.2,<6.0
wagtail6.0: wagtail>=6.0,<6.1
wagtailmain: git+https://github.com/wagtail/wagtail.git
postgres: psycopg2
[testenv:flake8]
basepython=python3.8
deps=flake8>=2.2.0
commands=flake8 wagtail_content_import