about summary refs log tree commit diff
path: root/scripts
diff options
context:
space:
mode:
authorJonathan "Duke" Leto <jonathan@leto.net>2011-11-04 19:26:10 -0700
committerJonathan "Duke" Leto <jonathan@leto.net>2011-11-04 19:26:10 -0700
commit0f8e27ed9a1969d8164a71c929ac7a220a3085b9 (patch)
tree663eba4af60614a52f4b4a35b2fbd812d8c8f3b8 /scripts
parentupdate gitignore (diff)
downloadjitterbug-0f8e27ed9a1969d8164a71c929ac7a220a3085b9.tar.gz
Run python tests if setup.py is found
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/capsule.sh2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/capsule.sh b/scripts/capsule.sh
index 6cf2bc7..fd120b4 100755
--- a/scripts/capsule.sh
+++ b/scripts/capsule.sh
@@ -46,6 +46,8 @@ function jitterbug_build () {
         make test >> $logfile 2>&1
     elif [ -f 'Rakefile' ]; then
         rake test >> $logfile 2>&1
+    elif [ -f 'setup.py' ]; then
+        setup.py test >> $logfile 2>&1
     fi
 }