tempest error codes should start with T
Because this was originally based on the nova hacking.py
the error codes were all N*. But now that we are owning it
in tempest they should be T*, as we're diverging.
Change the ignores to follow the errors that we're ignoring.
Change-Id: I7b23325da41a3942ae51ee3d29a49f54c75c57f8
diff --git a/run_tests.sh b/run_tests.sh
index fd7da88..f50b695 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -77,7 +77,7 @@
srcfiles+=" `find tools -type f -name "*.py"`"
srcfiles+=" setup.py"
- ignore='--ignore=N401,N402,E121,E122,E125,E126'
+ ignore='--ignore=T401,T402,E121,E122,E125,E126'
${wrapper} python tools/hacking.py ${ignore} ${srcfiles}
}