Files
fast_api_template/test.sh
T

15 lines
204 B
Bash
Raw Normal View History

#! /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 "$@"
cd ../