Merge pull request #7782 from ethereum/develop

Merge develop into develop_060
This commit is contained in:
chriseth
2019-11-25 17:58:09 +01:00
committed by GitHub
6 changed files with 85 additions and 25 deletions
+7 -2
View File
@@ -255,8 +255,13 @@ function truffle_run_test
printLog "Running compile function..."
$compile_fn
verify_compiler_version "$SOLCVERSION"
printLog "Running test function..."
$test_fn
if [[ "$COMPILE_ONLY" == 1 ]]; then
printLog "Skipping test function..."
else
printLog "Running test function..."
$test_fn
fi
done
}