We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b512b11 commit 0d4b4eeCopy full SHA for 0d4b4ee
3 files changed
{{cookiecutter.project_slug}}/scripts/build.sh
@@ -1,5 +1,8 @@
1
#!/bin/bash
2
3
+# Exit in case of error
4
+set -e
5
+
6
# Build and run containers
7
docker-compose up -d
8
{{cookiecutter.project_slug}}/scripts/test.sh
@@ -1,4 +1,7 @@
#! /usr/bin/env bash
docker-compose run backend pytest
docker-compose run frontend test
{{cookiecutter.project_slug}}/scripts/test_backend.sh
@@ -1,3 +1,6 @@
docker-compose run backend pytest $@
0 commit comments