From 90a1e5d5f517313f2c2a77918d97bae94a722417 Mon Sep 17 00:00:00 2001 From: Doug Hellmann Date: Fri, 1 May 2015 19:39:53 +0000 Subject: Remove run_cross_tests.sh This script is part of the oslotest package now. Change-Id: I14681b35dbcc9290adc59b77f73e1580a1f46acf --- openstack-common.conf | 3 -- tools/run_cross_tests.sh | 100 ----------------------------------------------- 2 files changed, 103 deletions(-) delete mode 100755 tools/run_cross_tests.sh diff --git a/openstack-common.conf b/openstack-common.conf index 2bae3b4..85fdb88 100644 --- a/openstack-common.conf +++ b/openstack-common.conf @@ -1,7 +1,4 @@ [DEFAULT] -# The list of modules to copy from oslo-incubator.git -script = tools/run_cross_tests.sh - # The base module to hold the copy of openstack.common base=oslosphinx diff --git a/tools/run_cross_tests.sh b/tools/run_cross_tests.sh deleted file mode 100755 index d61ae9d..0000000 --- a/tools/run_cross_tests.sh +++ /dev/null @@ -1,100 +0,0 @@ -#!/bin/bash -# -# Run cross-project tests -# -# Usage: -# -# run_cross_tests.sh project_dir venv - -# Fail the build if any command fails -set -e - -project_dir="$1" -shift -venv="$1" -shift -posargs="$*" - -if [ -z "$project_dir" -o -z "$venv" ] -then - cat - < ./subunit_log.txt - fi - .tox/$venv/bin/python /usr/local/jenkins/slave_scripts/subunit2html.py ./subunit_log.txt testr_results.html - gzip -9 ./subunit_log.txt - gzip -9 ./testr_results.html - - export PYTHON=.tox/$venv/bin/python - set -e - rancount=$(.tox/$venv/bin/testr last | sed -ne 's/Ran \([0-9]\+\).*tests in.*/\1/p') - if [ "$rancount" -eq "0" ] ; then - echo - echo "Zero tests were run. At least one test should have been run." - echo "Failing this test as a result" - echo - exit 1 - fi -fi - -# If we make it this far, report status based on the tests that were -# run. -exit $result -- cgit v1.2.1