summaryrefslogtreecommitdiff
path: root/run_tests.sh
blob: c0df6fb3fbaf2a976e1d98bad9629e6d4c8bfde0 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/sh

if [ -e "`which tox`" ]; then
    tox $@
else
    echo "**** install tox globally to test all Pythons at once http://codespeak.net/tox/"
    python setup.py egg_info
    python selftest.py $@
fi