677bc50519
* Moved deployment/molecule to deployment-e2e * Update paths and readmes * Nested molecule * Corrected paths * paths * path * Moved docker up
10 lines
262 B
Bash
Executable File
10 lines
262 B
Bash
Executable File
#!/usr/bin/env bash
|
|
cd $(dirname $0)
|
|
set -e # exit when any command fails
|
|
|
|
while [ "$1" != "" ]; do
|
|
docker-compose build && docker-compose run molecule_runner /bin/bash -c "molecule test --scenario-name $1"
|
|
|
|
shift # Shift all the parameters down by one
|
|
done
|