Commit 2bb6befb by Dave Syer

Add vanilla integration tests

parent 2f0d425b
......@@ -2,12 +2,24 @@
set -o errexit
mkdir -p target
SCRIPT_URL="https://raw.githubusercontent.com/spring-cloud-samples/brewery/master/acceptance-tests/scripts/runDockerAcceptanceTests.sh"
AT_WHAT_TO_TEST="EUREKA"
AT_VERSION="1.1.0.BUILD-SNAPSHOT"
cd target
curl "${SCRIPT_URL}" --output runDockerAcceptanceTests.sh
chmod +x runDockerAcceptanceTests.sh
./runDockerAcceptanceTests.sh -t "${AT_WHAT_TO_TEST}" -v "${AT_VERSION}"
\ No newline at end of file
./runDockerAcceptanceTests.sh -t "${AT_WHAT_TO_TEST}" -v "${AT_VERSION}"
SCRIPT_URL="https://raw.githubusercontent.com/spring-cloud-samples/tests/master/scripts/runTests.sh"
curl "${SCRIPT_URL}" --output runIntegrationTests.sh
chmod +x runIntegrationTests.sh
./runIntegrationTests.sh
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment