forked from peterpakos/checkipaconsistency
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
36 lines (30 loc) · 744 Bytes
/
tox.ini
File metadata and controls
36 lines (30 loc) · 744 Bytes
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
[tox]
minversion = 2.3.1
envlist = py27,py33,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
commands =
{envpython} setup.py package
[testenv:packagepy3]
basepython = python3
commands =
{envpython} setup.py package