forked from flasgger/flasgger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
31 lines (27 loc) · 818 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
# Tox (http://tox.testrun.org/) is a tool for running tests
# in multiple virtualenvs. This configuration file will run the
# test suite on all supported python versions. To use it, "pip install tox"
# and then run "tox" from this directory.
[tox]
envlist =
py36-flask{010,012,10,104},
py37-flask{010,012,10,104},
py37-marshmallow-apispec,
py38-dev-flasklatest,
install_command = pip install {opts} "{packages}"
[testenv]
whitelist_externals = make
setenv =
PYTHONPATH = {toxinidir}:{toxinidir}/flassger
commands =
make test
deps =
flask010: flask==0.10
flask012: flask==0.12
flask10: flask==1.0
flask104: flask==1.0.4
flasklatest: flask==latest
marshmallow: marshmallow
apispec: apispec
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-dev.txt