github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/k8s/scripts/entrypoint (about) 1 #!/usr/bin/env bash 2 3 # Runs compiled go executables and specificies the test to run 4 5 set -ex 6 7 SCRIPT_DIR=$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" &>/dev/null && pwd) 8 9 cd "$SCRIPT_DIR"/../ || exit 1 10 11 ./${SUITE}.test -test.v -test.count 1 -test.timeout 1h -test.run ^${TEST_NAME}$