1 2 3 4 5 6 7 8 9
#!/bin/bash if [ "$1" == 'test' ] then nosetests --nocapture test/unit nosetests --nocapture test/integration else python setup.py $* fi