aboutsummaryrefslogtreecommitdiffstats
path: root/bin/test
blob: 025248e3c1f899b4ecb310e368b324bc8cd24039 (plain) (blame)
1
2
3
4
5
6
7
8
#!/bin/bash
if [[ $(python -V 2>&1) =~ "Python 2" ]]
then
    nosetests --nocapture --with-doctest --doctest-tests -I ^test.py $* && \
      pep8 --ignore=E402 screenplain tests
else
    python test.py && pep8 --ignore=E402 screenplain tests
fi