Clonedigger only supports Python 2
This commit is contained in:
parent
338abc2883
commit
68d9a4b783
|
@ -16,11 +16,11 @@ env:
|
||||||
matrix:
|
matrix:
|
||||||
include:
|
include:
|
||||||
- python: 2.7
|
- python: 2.7
|
||||||
env: TOXENV=lint
|
env: TOXENV=py2lint
|
||||||
- python: 2.7
|
- python: 2.7
|
||||||
env: TOXENV=py27
|
env: TOXENV=py27
|
||||||
- python: 3.6
|
- python: 3.6
|
||||||
env: TOXENV=lint
|
env: TOXENV=py3lint
|
||||||
- python: 3.6
|
- python: 3.6
|
||||||
env: TOXENV=py36
|
env: TOXENV=py36
|
||||||
- python: 3.5
|
- python: 3.5
|
||||||
|
|
14
tox.ini
14
tox.ini
|
@ -21,7 +21,7 @@ commands = py.test -v -s -W all --cov pylast --cov-report term-missing {posargs}
|
||||||
deps = ipdb
|
deps = ipdb
|
||||||
commands = {posargs}
|
commands = {posargs}
|
||||||
|
|
||||||
[testenv:lint]
|
[testenv:py2lint]
|
||||||
deps =
|
deps =
|
||||||
coverage
|
coverage
|
||||||
pep8
|
pep8
|
||||||
|
@ -34,3 +34,15 @@ commands =
|
||||||
pep8 pylast
|
pep8 pylast
|
||||||
pep8 tests
|
pep8 tests
|
||||||
./clonedigger.sh
|
./clonedigger.sh
|
||||||
|
|
||||||
|
[testenv:py3lint]
|
||||||
|
deps =
|
||||||
|
coverage
|
||||||
|
pep8
|
||||||
|
pyyaml
|
||||||
|
pyflakes
|
||||||
|
commands =
|
||||||
|
pyflakes pylast
|
||||||
|
pyflakes tests
|
||||||
|
pep8 pylast
|
||||||
|
pep8 tests
|
||||||
|
|
Loading…
Reference in a new issue