2019-06-18 22:31:47 +03:00
|
|
|
#!/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:
|
2020-09-21 13:20:24 +03:00
|
|
|
# sh tests/test_bare.sh
|
2019-06-18 22:31:47 +03:00
|
|
|
|
|
|
|
set -o errexit
|
2020-10-04 17:56:17 +03:00
|
|
|
set -x
|
2019-06-18 22:31:47 +03:00
|
|
|
|
|
|
|
# create a cache directory
|
|
|
|
mkdir -p .cache/bare
|
|
|
|
cd .cache/bare
|
|
|
|
|
|
|
|
# create the project using the default settings in cookiecutter.json
|
2022-01-04 20:48:21 +03:00
|
|
|
cookiecutter ../../ --no-input --overwrite-if-exists use_docker=n "$@"
|
2019-06-18 22:31:47 +03:00
|
|
|
cd my_awesome_project
|
|
|
|
|
|
|
|
# Install OS deps
|
|
|
|
sudo utility/install_os_dependencies.sh install
|
|
|
|
|
|
|
|
# Install Python deps
|
2020-12-02 16:58:05 +03:00
|
|
|
pip install -r requirements/local.txt
|
2019-06-18 22:31:47 +03:00
|
|
|
|
|
|
|
# run the project's tests
|
|
|
|
pytest
|
2021-11-16 23:29:43 +03:00
|
|
|
|
2021-12-24 22:35:09 +03:00
|
|
|
# Make sure the check doesn't raise any warnings
|
|
|
|
python manage.py check --fail-level WARNING
|
|
|
|
|
2023-01-29 15:12:12 +03:00
|
|
|
# Run npm build script if package.json is present
|
2021-11-16 23:29:43 +03:00
|
|
|
if [ -f "package.json" ]
|
|
|
|
then
|
|
|
|
npm install
|
2023-01-29 15:12:12 +03:00
|
|
|
npm run build
|
2021-11-16 23:29:43 +03:00
|
|
|
fi
|
|
|
|
|
2021-12-28 18:35:56 +03:00
|
|
|
# Generate the HTML for the documentation
|
2022-01-04 20:48:21 +03:00
|
|
|
cd docs && make html
|