Files
full-stack-fastapi-template/test.sh
2020-01-19 22:40:50 +01:00

15 lines
204 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 ../