Matthew Treinish | 83d2ec4 | 2013-07-30 16:37:32 -0400 | [diff] [blame] | 1 | #!/bin/sh |
2 | |||||
3 | TESTRARGS=$@ | ||||
4 | |||||
5 | if [ ! -d .testrepository ]; then | ||||
6 | testr init | ||||
7 | fi | ||||
Matthew Treinish | 59eb0b2 | 2013-08-07 15:48:21 -0400 | [diff] [blame] | 8 | testr run --subunit $TESTRARGS | subunit2pyunit |
Matthew Treinish | cb56994 | 2013-08-09 16:33:44 -0400 | [diff] [blame] | 9 | retval=$? |
Matthew Treinish | 83d2ec4 | 2013-07-30 16:37:32 -0400 | [diff] [blame] | 10 | testr slowest |
Matthew Treinish | cb56994 | 2013-08-09 16:33:44 -0400 | [diff] [blame] | 11 | exit $retval |