When running testr outside of venv use full path.
* modules/jenkins/files/slave_scripts/run-tox.sh: When running testr from outside of the venv provide a full path to testr. Testr cannot be found otherwise. Change-Id: I25602847d389d4ddc62acd872e54727d6f309443 Reviewed-on: https://review.openstack.org/26783 Reviewed-by: Jeremy Stanley <fungi@yuggoth.org> Approved: James E. Blair <corvus@inaugust.com> Reviewed-by: James E. Blair <corvus@inaugust.com> Tested-by: Jenkins
This commit is contained in:
parent
8e39f70dd8
commit
da9eba6e53
@ -63,8 +63,8 @@ if [ -d ".testrepository" ] ; then
|
||||
gzip -9 ./subunit_log.txt
|
||||
gzip -9 ./testr_results.html
|
||||
|
||||
foundcount=$(.tox/$venv/bin/python testr list-tests | sed -e '1d' | wc -l)
|
||||
rancount=$(.tox/$venv/bin/python testr last | sed -ne 's/Ran \([0-9]\+\).*tests in.*/\1/p')
|
||||
foundcount=$(.tox/$venv/bin/python .tox/$venv/bin/testr list-tests | sed -e '1d' | wc -l)
|
||||
rancount=$(.tox/$venv/bin/python .tox/$venv/bin/testr last | sed -ne 's/Ran \([0-9]\+\).*tests in.*/\1/p')
|
||||
if [ "$rancount" -lt "$foundcount" ] ; then
|
||||
echo
|
||||
echo "The number of tests found was greater than the number of tests"
|
||||
|
Loading…
x
Reference in New Issue
Block a user