Codebase list python-pyeclib / 419e41b4-e994-488a-b279-f4800b5a4e2f/main .unittests
419e41b4-e994-488a-b279-f4800b5a4e2f/main

Tree @419e41b4-e994-488a-b279-f4800b5a4e2f/main (Download .tar.gz)

.unittests @419e41b4-e994-488a-b279-f4800b5a4e2f/mainraw · history · blame

#!/bin/bash

TOP_DIR=$(python -c "import os; print os.path.dirname(os.path.realpath('$0'))")

python -c 'from distutils.version import LooseVersion as Ver; import nose, sys; sys.exit(0 if Ver(nose.__version__) >= Ver("1.2.0") else 1)'
cd $TOP_DIR/test
nosetests $@
rvalue=$?
cd -
exit $rvalue