From 0a14db048143c0f2a562148344292e5a0ea02c0b Mon Sep 17 00:00:00 2001 From: Joran Honig Date: Mon, 16 Apr 2018 09:53:19 +0200 Subject: [PATCH] Add dependency check to test script --- all_tests.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/all_tests.sh b/all_tests.sh index 4e8e1646..1cc93e42 100755 --- a/all_tests.sh +++ b/all_tests.sh @@ -1,8 +1,11 @@ #!/bin/sh -python --version +python3 --version echo "Please make sure you are using python 3.6.x" +solc --version +echo "Please make sure you are using solc 0.4.21" + rm -rf ./tests/testdata/outputs_current/ mkdir -p ./tests/testdata/outputs_current/ python3 -m unittest discover -p "*_test.py"