summaryrefslogtreecommitdiff
path: root/run_tests.sh
diff options
context:
space:
mode:
authorDirk Mueller <dirk@dmllr.de>2013-06-09 11:07:27 +0200
committerDirk Mueller <dirk@dmllr.de>2013-06-22 16:00:26 +0200
commit62579fbb217f4c1a4668e793ebaafaf668619206 (patch)
tree8a791ee5b60248ecc5f59b895c1e4049529ab918 /run_tests.sh
parentd8a537c7fe9b1e455831d05d9ba0ab67e03fb3a5 (diff)
downloadpython-glanceclient-62579fbb217f4c1a4668e793ebaafaf668619206.tar.gz
Start using Pyflakes and Hacking
Instead of globally ignoring pyflakes and hacking warnings, only blacklist those that trigger very frequently so far, in order to clean them up in followup commits. Fix and start gating on the rest already. Change-Id: Ied7c7250061e3bf379e8286e8ce3b9e4af817faf
Diffstat (limited to 'run_tests.sh')
-rwxr-xr-xrun_tests.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/run_tests.sh b/run_tests.sh
index dc6cf22..1b6551a 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -4,13 +4,13 @@ function usage {
echo "Usage: $0 [OPTION]..."
echo "Run python-glanceclient's test suite(s)"
echo ""
- echo " -p, --pep8 Just run pep8"
+ echo " -p, --pep8 Just run flake8"
echo " -h, --help Print this usage message"
echo ""
echo "This script is deprecated and currently retained for compatibility."
echo 'You can run the full test suite for multiple environments by running "tox".'
echo 'You can run tests for only python 2.7 by running "tox -e py27", or run only'
- echo 'the pep8 tests with "tox -e pep8".'
+ echo 'the flake8 tests with "tox -e pep8".'
exit
}