forked from torchbox/wagtail-wordpress-import
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
54 lines (45 loc) · 1.27 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
46
47
48
49
50
51
52
53
54
[tox]
skipsdist = True
usedevelop = True
skip_missing_interpreters = True
envlist =
python{3.7,3.8,3.9,3.10}-django{3.2}-wagtail{2.15}
python{3.8,3.9,3.10}-django{3.2,4.0}-wagtail{2.16,3.0}
python{3.8,3.9,3.10}-django{3.2,4.0,4.1}-wagtail{4.0,4.1}
[gh-actions]
python =
3.7: python3.7
3.8: python3.8
3.9: python3.9
3.10: python3.10
[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands =
coverage run testmanage.py test --deprecation all
coverage report -m
basepython =
python3.7: python3.7
python3.8: python3.8
python3.9: python3.9
python3.10: python3.10
deps =
coverage
django3.1: Django>=3.1,<3.2
django3.2: Django>=3.2,<3.3
django4.0: Django>=4.0,<4.1
django4.1: Django>=4.1,<4.2
wagtail2.15: wagtail>=2.15,<2.16
wagtail2.16: wagtail>=2.16,<2.17
wagtail3.0: wagtail>=3.0,<4.0
wagtail4.0: wagtail>=4.0,<4.1
wagtail4.1: wagtail>=4.1,<4.2
lxml: lxml>=4.6,<4,7
bleach: bleach>=4.1,<4.2
prettytable: prettytable>=2.2,<2.3
shortcodes: shortcodes>=5.1,<6.0
responses: responses>=0.16.0,<0.17.0
cached_property: cached-property>=1.5.1,<1.6.0
[testenv:flake8]
basepython=python3.8
deps=flake8>=2.2.0
commands=flake8 wagtail_wordpress_import