github.com/franc20/ayesa_sap@v7.0.0-beta.28.0.20200124003224-302d4d52fa6c+incompatible/bin/test-integration (about) 1 #!/usr/bin/env bash 2 3 set -x 4 DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" 5 6 export CF_DIAL_TIMEOUT=15 7 8 $DIR/cleanup-integration 9 10 ginkgo -r -randomizeAllSpecs -slowSpecThreshold=60 $@ integration/isolated integration/plugin integration/experimental 11 12 if [[ -z $SKIP_OTHER ]]; then 13 # The following test suite **cannot** be run in parallel!!! 14 ginkgo -r -randomizeAllSpecs -slowSpecThreshold=60 integration/global 15 fi 16 17 $DIR/cleanup-integration