2019-02-09 19:42:36 +04:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
|
|
|
# Exit in case of error
|
|
|
|
set -e
|
|
|
|
|
|
|
|
rm -rf ./testing-project
|
|
|
|
|
|
|
|
cookiecutter --config-file ./testing-config.yml --no-input -f ./
|
|
|
|
|
|
|
|
cd ./testing-project
|
|
|
|
|
2020-01-19 22:40:50 +01:00
|
|
|
bash ./scripts/test.sh "$@"
|
2019-02-09 19:42:36 +04:00
|
|
|
|
|
|
|
cd ../
|