Add pep8 to the script used by the periodic-with-neutron-lib job

This will help assess whether changes to the lib's hacking
incubating factory will break consumer projects.

Change-Id: I9bb173071abcbc5078a3fd728c41c34bf1b83ca2
This commit is contained in:
Armando Migliaccio 2017-03-07 07:58:20 -08:00
parent f961175261
commit ba4d707fcf
1 changed files with 7 additions and 0 deletions

View File

@ -29,4 +29,11 @@ commands =
{toxinidir}/tools/ostestr_compat_shim.sh {posargs}
EOF
set +e
$script_path/run-tox.sh pep8
pep8_code=$?
$script_path/run-tox.sh $venv-neutron-lib-master
venv_code=$?
set -e
exit_code=$(( $pep8_code || $venv_code ))
exit $exit_code