third_party.pylibs.pylint.src/tox.ini

106 lines
2.6 KiB
INI
Raw Normal View History

[tox]
2019-03-05 08:45:18 +00:00
envlist = py34, py35, py36, py37, py38, pypy, pylint
skip_missing_interpreters = true
[testenv:pylint]
deps =
git+https://github.com/pycqa/astroid@master
isort
commands = pylint -rn --rcfile={toxinidir}/pylintrc --load-plugins=pylint.extensions.docparams, pylint.extensions.mccabe {envsitepackagesdir}/pylint
2018-09-17 07:07:02 +00:00
[testenv:formatting]
basepython = python3
deps =
black==19.3b0
isort==4.3.15
commands =
black --check --exclude "functional|input|test/extension|test/regrtest_data|test/data" pylint
isort -rc pylint/ --check-only
2018-09-17 07:07:02 +00:00
changedir = {toxinidir}
2018-07-23 17:20:58 +00:00
[testenv:mypy]
basepython = python3
deps =
mypy
commands =
python -m mypy {toxinidir}/pylint/checkers --ignore-missing-imports
2018-07-23 17:20:58 +00:00
[testenv]
deps =
https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0
coverage
isort
mccabe
pytest
pytest-xdist
2015-11-07 16:16:06 +00:00
setenv =
COVERAGE_FILE = {toxinidir}/.coverage.{envname}
commands =
python -Wi {envsitepackagesdir}/coverage run -m pytest {envsitepackagesdir}/pylint/test/ {posargs:}
; Transform absolute path to relative path
; for compatibility with coveralls.io and fix 'source not available' error.
; If you can find a cleaner way is welcome
python -c "import os;cov_strip_abspath = open(os.environ['COVERAGE_FILE'], 'r').read().replace('.tox' + os.sep + os.path.relpath('{envsitepackagesdir}', '{toxworkdir}') + os.sep, '');open(os.environ['COVERAGE_FILE'], 'w').write(cov_strip_abspath)"
changedir = {toxworkdir}
[testenv:spelling]
deps =
https://github.com/PyCQA/astroid/tarball/master#egg=astroid-master-2.0
pytest
pytest-xdist
pyenchant
commands =
python -Wi -m pytest {envsitepackagesdir}/pylint/test/ {posargs:} -k unittest_checker_spelling
changedir = {toxworkdir}
[testenv:coveralls]
setenv =
COVERAGE_FILE = {toxinidir}/.coverage
passenv =
*
deps =
coverage
coveralls
skip_install = true
commands =
python {envsitepackagesdir}/coverage combine
python {envsitepackagesdir}/coverage report --rcfile={toxinidir}/.coveragerc -m
- coveralls --rcfile={toxinidir}/.coveragerc
changedir = {toxinidir}
[testenv:coverage-erase]
setenv =
COVERAGE_FILE = {toxinidir}/.coverage
deps =
coverage
skip_install = true
commands =
python {envsitepackagesdir}/coverage erase
changedir = {toxinidir}
2018-06-04 17:35:34 +00:00
[testenv:docs]
skipsdist = True
usedevelop = True
changedir = doc/
whitelist_externals = rm
deps =
sphinx
python-docs-theme
2018-06-04 17:35:34 +00:00
commands =
pip install python_docs_theme
2018-06-04 17:35:34 +00:00
rm -f features.rst
python ./exts/pylint_features.py
rm -f extensions.rst
python ./exts/pylint_extensions.py
2018-07-31 16:16:46 +00:00
sphinx-build -W -b html -d _build/doctrees . _build/html