dragonflow/tools/pretty_tox.sh
Gal Sagie 37d524a4e3 Enable Env for DragonFlow Unit Testing
Add missing dependencies and create empty test classes

Change-Id: I7f13da25914d1798286e6ff0936d20bbf645c3a2
2015-04-29 10:58:37 +03:00

7 lines
198 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 ) | $(dirname $0)/subunit-trace.py -f) && exit $status