forked from peterpakos/checkipaconsistency
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtox.ini
37 lines (31 loc) · 746 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
[tox]
envlist = py27,py34,py35,py36,pep8py2,pep8py3,packagepy2,packagepy3
skip_missing_interpreters = true
[testenv]
commands =
{envpython} -m checkipaconsistency --help
{envpython} cipa --help
[testenv:pep8py2]
basepython = python2.7
deps =
pycodestyle
commands =
{envpython} -m pycodestyle --max-line-length=120 \
{toxinidir}/checkipaconsistency
[testenv:pep8py3]
basepython = python3
deps =
pycodestyle
commands =
{envpython} -m pycodestyle --max-line-length=120 \
{toxinidir}/checkipaconsistency
[testenv:packagepy2]
basepython = python2.7
deps = wheel
commands =
{envpython} setup.py package
[testenv:packagepy3]
basepython = python3
deps = wheel
commands =
{envpython} setup.py package