aboutsummaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorJohn Peter Yamauchi <johnpeteryams@gmail.com>2019-02-19 22:04:22 -0600
committerJohn Peter Yamauchi <johnpeteryams@gmail.com>2019-02-19 22:04:22 -0600
commit821cf166606e82cc971f925ab7e104d76c8e1a3b (patch)
tree867198647ed7370d8dde12bd1515ab8ddf5bde50 /bin
parent16af7101e490ce86aef57f0ed0eb475741fa06a4 (diff)
downloadscreenplain-821cf166606e82cc971f925ab7e104d76c8e1a3b.tar.gz
Run Python 3 test script when running Py3
Diffstat (limited to 'bin')
-rwxr-xr-xbin/test9
1 files changed, 7 insertions, 2 deletions
diff --git a/bin/test b/bin/test
index 0b7ce83..025248e 100755
--- a/bin/test
+++ b/bin/test
@@ -1,3 +1,8 @@
#!/bin/bash
-nosetests --nocapture --with-doctest --doctest-tests -I ^test.py $* && \
- pep8 --ignore=E402 screenplain tests
+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