1d5f32b48e
This commit cleans up how tempest failure logs are displayed. We'll no longer dump the failure information to the console as a test fails. Instead all the failure logs will be printed after the tests are run. Change-Id: I7ecdc349d913b43f4fb0505d5c17c66f811774b4
7 lines
174 B
Bash
Executable File
7 lines
174 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -o pipefail
|
|
|
|
TESTRARGS=$1
|
|
python setup.py testr --slowest --testr-args="--subunit $TESTRARGS" | $(dirname $0)/subunit-trace.py --no-failure-debug -f
|