1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
From: Scott Kitterman <scott@kitterman.com>
Date: Mon, 6 Jan 2020 02:40:47 -0500
Subject: Only run tests for python3
---
run_tests.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/run_tests.sh b/run_tests.sh
index 16bc398..3e22f06 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -2,7 +2,7 @@
export PYTHONPATH=$(pwd)
-: ${VERSIONS:="python python3"}
+: ${VERSIONS:="python3"}
for src in __init__.py bimap.py bit.py buffer.py label.py dns.py lex.py server.py digparser.py ranges.py test_decode.py
do
|