forked from roaldnefs/python-transip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tox.ini
48 lines (38 loc) · 1.1 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
# 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,py37,py38,py39}-install,mypy,pep8
[testenv]
deps =
mypy
pytest
flake8
responses
commands =
pytest tests {posargs}
mypy --config-file=tox.ini transip tests
[testenv:pep8]
commands =
flake8 {posargs} transip/
[testenv:install]
skip_install = True
commands =
python setup.py bdist_wheel
pip install --no-index --find-links=dist transip
[testenv:py36-install]
skip_install = {[testenv:install]skip_install}
commands = {[testenv:install]commands}
[testenv:py37-install]
skip_install = {[testenv:install]skip_install}
commands = {[testenv:install]commands}
[testenv:py38-install]
skip_install = {[testenv:install]skip_install}
commands = {[testenv:install]commands}
[testenv:py39-install]
skip_install = {[testenv:install]skip_install}
commands = {[testenv:install]commands}
[mypy]
[flake8]
exclude = .git,.venv,.tox,dist,doc,*egg,build,