diff options
author | Ashley Whetter <ashley@awhetter.co.uk> | 2019-06-14 22:28:42 -0700 |
---|---|---|
committer | Claudiu Popa <pcmanticore@gmail.com> | 2019-06-20 10:02:14 +0200 |
commit | 33b8185a455c1686d038258697bb93005f2441c2 (patch) | |
tree | 4a50ccac775c009436e45803129e428ed694065f /tox.ini | |
parent | 7081d91f30728653000bdfc59ea85a3395f96418 (diff) | |
download | pylint-git-33b8185a455c1686d038258697bb93005f2441c2.tar.gz |
Stopped installing tests with package
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -16,7 +16,7 @@ deps = black==19.3b0 isort==4.3.15 commands = - black --check --exclude "functional|input|test/extension|test/regrtest_data|test/data" pylint + black --check pylint isort -rc pylint/ --check-only changedir = {toxinidir} @@ -41,7 +41,7 @@ setenv = COVERAGE_FILE = {toxinidir}/.coverage.{envname} commands = - python -Wi {envsitepackagesdir}/coverage run -m pytest {envsitepackagesdir}/pylint/test/ {posargs:} + python -Wi {envsitepackagesdir}/coverage run -m pytest {toxinidir}/tests/ {posargs:} ; Transform absolute path to relative path ; for compatibility with coveralls.io and fix 'source not available' error. @@ -58,7 +58,7 @@ deps = pyenchant commands = - python -Wi -m pytest {envsitepackagesdir}/pylint/test/ {posargs:} -k unittest_checker_spelling + python -Wi -m pytest {toxinidir}/tests/ {posargs:} -k unittest_checker_spelling changedir = {toxworkdir} |