From 07241cd751c1e3d9858a8fca1c9dcaf1cc766f35 Mon Sep 17 00:00:00 2001
From: Casey Faist <caseylfaist@gmail.com>
Date: Mon, 22 Oct 2018 14:31:48 -0500
Subject: [PATCH] add tests for new runtimes

---
 test/run | 18 +++++++++++++++---
 1 file changed, 15 insertions(+), 3 deletions(-)

diff --git a/test/run b/test/run
index f6368161..c5126dad 100755
--- a/test/run
+++ b/test/run
@@ -93,9 +93,21 @@ testPython2() {
     assertCapturedSuccess
 }
 
-testPython3() {
-  compile "python3"
-  assertCaptured "python-3.6.6"
+testPython3_5() {
+  compile "python3_5"
+  assertCaptured "python-3.5.6"
+  assertCapturedSuccess
+}
+
+testPython3_6() {
+  compile "python3_6"
+  assertCaptured "python-3.6.7"
+  assertCapturedSuccess
+}
+
+testPython3_7() {
+  compile "python3_7"
+  assertCaptured "python-3.7.1"
   assertCapturedSuccess
 }
 
-- 
GitLab