15 lines
199 B
Bash
15 lines
199 B
Bash
![]() |
#! /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
|
||
|
|
||
|
bash ./scripts/test.sh
|
||
|
|
||
|
cd ../
|