165a3873dd
Cleans up tox output to be more human friendly, this however does not resolve the logs/stacktraces being shown three times. Partial-Bug: 1413807 Change-Id: I8328b89e6a2d1c3f3dd8bd3218f450a4613ade59
7 lines
181 B
Bash
Executable File
7 lines
181 B
Bash
Executable File
#! /bin/sh
|
|
|
|
TESTRARGS=$1
|
|
|
|
exec 3>&1
|
|
status=$(exec 4>&1 >&3; ( python setup.py testr --slowest --testr-args="--subunit $TESTRARGS"; echo $? >&4 ) | subunit-trace -f) && exit $status
|