diff options
Diffstat (limited to 'run-integration-tests.sh')
-rwxr-xr-x | run-integration-tests.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/run-integration-tests.sh b/run-integration-tests.sh new file mode 100755 index 00000000000..ca90257796c --- /dev/null +++ b/run-integration-tests.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -euo pipefail + +ORCHESTRATOR_CONFIG_URL=$1 +CATEGORY=$2 +shift 2 + +cd it +mvn verify \ + -Dorchestrator.configUrl=$ORCHESTRATOR_CONFIG_URL \ + -Dcategory=$CATEGORY \ + -Dsource.skip=true -B -e -V $* |