-
Notifications
You must be signed in to change notification settings - Fork 828
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created scripts to run the unit and integration tests
- Also updated the README with these new commands [#154301749] https://www.pivotaltracker.com/story/show/154301749 Signed-off-by: Bruce Ricard <[email protected]>
- Loading branch information
1 parent
5a8c489
commit cc5601d
Showing
3 changed files
with
23 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
set -xeu | ||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
|
||
DB_IMAGE_NAME="$1" | ||
|
||
docker run --privileged -t -i --shm-size=1G -v ${SCRIPT_DIR}:/root/uaa cfidentity/uaa-${DB_IMAGE_NAME} /root/uaa/scripts/integration-tests.sh ${DB_IMAGE_NAME},default |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/bash | ||
|
||
set -xeu | ||
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | ||
|
||
DB_IMAGE_NAME="$1" | ||
|
||
docker run --privileged -t -i --shm-size=1G -v ${SCRIPT_DIR}:/root/uaa cfidentity/uaa-${DB_IMAGE_NAME} /root/uaa/scripts/unit-tests.sh ${DB_IMAGE_NAME},default |