mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2024-11-11 04:07:48 +03:00
19 lines
552 B
Bash
Executable File
19 lines
552 B
Bash
Executable File
#!/bin/sh
|
|
# this is a very simple script that tests the docker configuration for cookiecutter-django
|
|
# it is meant to be run from the root directory of the repository, eg:
|
|
# sh tests/test_docker.sh
|
|
|
|
# install test requirements
|
|
pip install -r requirements.txt
|
|
|
|
# create a cache directory
|
|
mkdir -p .cache/docker
|
|
cd .cache/docker
|
|
|
|
# create the project using the default settings in cookiecutter.json
|
|
cookiecutter ../../ --no-input --overwrite-if-exists
|
|
cd project_name
|
|
|
|
# run the project's tests
|
|
docker-compose -f dev.yml run django python manage.py test
|