forked from FactoryBoy/factory_boy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtox.ini
55 lines (44 loc) · 1018 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[tox]
minversion = 1.9
envlist =
lint
py{35,36,37,38}-django111-alchemy-mongoengine,
py{35,36,37,38}-django22-alchemy-mongoengine,
py{36,37,38}-django30-alchemy-mongoengine,
pypy3-django{111,22}-alchemy-mongoengine,
docs
examples
linkcheck
toxworkdir = {env:TOX_WORKDIR:.tox}
[testenv]
deps =
django111: Django>=1.11,<1.12
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django{111,22,30}: Pillow
alchemy: SQLAlchemy
mongoengine: mongoengine
whitelist_externals = make
commands = make test
[testenv:docs]
basepython = python3.8
extras = doc
whitelist_externals = make
commands = make doc
[testenv:examples]
basepython = python3.8
deps =
-rexamples/requirements.txt
whitelist_externals = make
commands = make example-test
[testenv:linkcheck]
extras = doc
whitelist_externals = make
commands = make linkcheck
[testenv:lint]
deps =
-rexamples/requirements.txt
check_manifest
extras = dev
whitelist_externals = make
commands = make lint