From d63ade55f5cc2a9ecf21ea2b43cfac80149c4c29 Mon Sep 17 00:00:00 2001 From: Christian Heimes Date: Tue, 11 Aug 2015 19:51:43 +0200 Subject: Move pylint-build-scan.py to scripts directory Move internal helper and its configuration out of the project's root directory into scripts/. Also use re instead of fnmatch to find the upgrade scriptlets. --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tox.ini') diff --git a/tox.ini b/tox.ini index aacbddb2a..d6a400548 100644 --- a/tox.ini +++ b/tox.ini @@ -44,7 +44,7 @@ sitepackages = True deps = pylint commands = - {envpython} {toxinidir}/pylint-build-scan.py tox + {envpython} {toxinidir}/scripts/pylint-build-scan.py tox [testenv:lint3k] basepython = python2.7 @@ -52,7 +52,7 @@ sitepackages = True deps = pylint commands = - {envpython} {toxinidir}/pylint-build-scan.py tox -- --py3k + {envpython} {toxinidir}/scripts/pylint-build-scan.py tox -- --py3k [testenv:pep8] basepython = python2.7 -- cgit