mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 08:35:21 +00:00
36 lines
944 B
INI
36 lines
944 B
INI
[tox]
|
|
envlist =
|
|
py{27,34,35,36},
|
|
py{27,34,35,36}-coverage,
|
|
py{27,34,35,36}-pytest,
|
|
py{27,34,35,36}-runtests,
|
|
py{27,34,35,36}-pytest-coverage,
|
|
py{27,34,35,36}-runtests-coverage,
|
|
pylint-salt,
|
|
pylint-tests
|
|
skip_missing_interpreters = True
|
|
skipsdist = True
|
|
|
|
[testenv]
|
|
passenv = LANG HOME
|
|
sitepackages = True
|
|
commands =
|
|
python -c 'import sys; sys.stderr.write("\n\nPlease use nox instead.\n\n"); sys.exit(1)'
|
|
|
|
[testenv:pylint-salt]
|
|
basepython = python2.7
|
|
deps = -r{toxinidir}/requirements/dev.txt
|
|
commands =
|
|
pylint --version
|
|
pylint --rcfile=.testing.pylintrc --disable=I,W1307,C0411,C0413,W8410,str-format-in-logging {posargs:setup.py salt/}
|
|
sitepackages = False
|
|
|
|
|
|
[testenv:pylint-tests]
|
|
basepython = python2.7
|
|
deps = -r{toxinidir}/requirements/dev.txt
|
|
commands =
|
|
pylint --version
|
|
pylint --rcfile=.testing.pylintrc --disable=I,W0232,E1002,W1307,C0411,C0413,W8410,str-format-in-logging {posargs:tests/}
|
|
sitepackages = False
|