github.com/dcarley/cf-cli@v6.24.1-0.20170220111324-4225ff346898+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  ginkgo -r -randomizeAllSpecs -slowSpecThreshold=30 $@ integration/isolated
     9  
    10  if [[ -z $SKIP_OTHER ]]; then
    11    # The following two test suites **cannot** be run in parallel!!!
    12    ginkgo -r -randomizeAllSpecs -slowSpecThreshold=30 integration/global
    13    ginkgo -r -randomizeAllSpecs -slowSpecThreshold=30 integration/plugin
    14  fi
    15  
    16  $DIR/cleanup-integration