diff --git a/tools/coding-checks.sh b/tools/coding-checks.sh
index 8a41223ee9..709f24e2ed 100755
--- a/tools/coding-checks.sh
+++ b/tools/coding-checks.sh
@@ -4,7 +4,7 @@ set -eu
 
 usage() {
     echo "Usage: $0 [OPTION]..."
-    echo "Run Cinder's coding check(s)"
+    echo "Run Manila's coding check(s)"
     echo ""
     echo " -Y, --pylint [<basecommit>] Run pylint check on the entire manila module or just files changed in basecommit (e.g. HEAD~1)"
     echo " -h, --help   Print this usage message"
diff --git a/tox.ini b/tox.ini
index 9a0093be40..2e43889564 100644
--- a/tox.ini
+++ b/tox.ini
@@ -104,6 +104,7 @@ commands =
 [testenv:pylint]
 basepython = python3
 deps = -r{toxinidir}/requirements.txt
+       -r{toxinidir}/test-requirements.txt
        pylint==2.1.1
 whitelist_externals = bash
 commands = bash ./tools/coding-checks.sh --pylint {posargs}