forked from jazzband/wagtailmenus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
35 lines (31 loc) · 825 Bytes
/
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
[tox]
skipsdist = True
usedevelop = True
envlist =
py{34,35,36,37}-dj{111,2,22,3}-wt{2,21,22,23,24,25,26,27}
py{38}-dj{22,3}-wt{28,29,210}
[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
commands = coverage run --source=wagtailmenus runtests.py
basepython =
py34: python3.4
py35: python3.5
py36: python3.6
py37: python3.7
py38: python3.8
deps =
dj111: Django>=1.11,<2.0
dj2: Django>=2.0,<2.1
dj22: Django>=2.2,<3.0
dj3: Django>=3.0,<3.1
wt2: wagtail>=2.0,<2.1
wt21: wagtail>=2.1,<2.2
wt22: wagtail>=2.2,<2.3
wt23: wagtail>=2.3,<2.4
wt24: wagtail>=2.4,<2.5
wt25: wagtail>=2.5,<2.6
wt26: wagtail>=2.6,<2.7
wt27: wagtail>=2.7,<2.8
wt28: wagtail>=2.8,<2.9
wt29: wagtail>=2.9,<2.10
wt210: wagtail>=2.10,<2.11