diff --git a/scripts/setup-ci.sh b/scripts/setup-ci.sh index aa493bb..af2297f 100755 --- a/scripts/setup-ci.sh +++ b/scripts/setup-ci.sh @@ -1,9 +1,2 @@ -if [ $TRAVIS_EVENT_TYPE == "cron" ]; then - echo "Test Suite: FULL" - TEST_SUITE="full" -else - echo "Test Suite: LITE" - TEST_SUITE="lite" -fi - -npx setup-local-chains $TEST_SUITE +#!/usr/bin/env bash +npx setup-local-chains "lite" diff --git a/scripts/test.sh b/scripts/test.sh index 57e2b27..129b750 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -39,9 +39,4 @@ run-all-tests(){ run-all-tests "ganacheUnitTest" -if [ "${TRAVIS_EVENT_TYPE}" == "cron" ] -then - run-all-tests "gethUnitTest" -fi - exit 0