2019-02-09 19:42:36 +04:00
|
|
|
#! /usr/bin/env bash
|
|
|
|
|
|
|
|
# Exit in case of error
|
|
|
|
set -e
|
|
|
|
|
2020-04-19 20:19:25 +02:00
|
|
|
# Run this from the root of the project
|
|
|
|
|
2019-02-09 19:42:36 +04:00
|
|
|
rm -rf ./testing-project
|
|
|
|
|
2020-04-19 20:19:25 +02:00
|
|
|
cookiecutter --no-input -f ./ project_name="Testing Project"
|
2019-02-09 19:42:36 +04:00
|
|
|
|
|
|
|
cd ./testing-project
|
|
|
|
|
2020-01-19 22:40:50 +01:00
|
|
|
bash ./scripts/test.sh "$@"
|
2019-02-09 19:42:36 +04:00
|
|
|
|
|
|
|
cd ../
|