-
Notifications
You must be signed in to change notification settings - Fork 1
/
tox.ini
32 lines (27 loc) · 780 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
[tox]
envlist = pep8,
py27,
py37
[testenv]
passenv = CI TRAVIS TRAVIS_*
deps = cython
commands = python setup.py test
# -----------------------------------------------------------------------------
# Additional test suite environments
# -----------------------------------------------------------------------------
[testenv:py34]
basepython = python3.4
[testenv:py35]
basepython = python3.5
[testenv:py36]
basepython = python3.6
# -----------------------------------------------------------------------------
# Code style and Linting
# -----------------------------------------------------------------------------
[testenv:pep8]
basepython = python3.7
deps = {[testenv]deps}
flake8
flake8-import-order
flake8-quotes
commands = flake8