aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/all_pythons.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/all_pythons.sh b/scripts/all_pythons.sh
new file mode 100755
index 0000000..136239c
--- /dev/null
+++ b/scripts/all_pythons.sh
@@ -0,0 +1,8 @@
+#!/bin/bash
+
+DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
+
+for VER in 2.7 3.2 3.3 #2.6 to be added later
+do
+ python${VER} ${DIR}/run_tests.py
+done