af84348370
Add some structure to the repo. Add very bare testing infrastructure. Add basic repo information (contact, launchpad, etc). Change-Id: I4f5595e38f61a0298d0b6828fe64f6a5ff70eac2
8 lines
182 B
Bash
8 lines
182 B
Bash
#! /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
|
|
|