3a96a43c53
Fix the correct repo Change-Id: I1deed42fb003f06bc97634e3908c6d82c8620e85
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
|