1
0
Fork 0
mirror of https://github.com/shouptech/flask-tutorial.git synced 2026-02-03 07:29:42 +00:00

Fix malformed heredoc in circle config

This commit is contained in:
Emma 2018-11-04 08:44:25 -07:00
parent a6162261d9
commit a7ab74683c

View file

@ -16,12 +16,12 @@ jobs:
name: Create config file name: Create config file
command: | command: |
mkdir -p instance mkdir -p instance
echo << EOF cat << EOF > instance/config.py
FLASK_APP='flaskr' FLASK_APP='flaskr'
FLASK_ENV='development' FLASK_ENV='development'
SECRET_KEY='test' SECRET_KEY='test'
SQLALCHEMY_DATABASE_URI='sqlite:////tmp/flaskr.sqlite.db' SQLALCHEMY_DATABASE_URI='sqlite:////tmp/flaskr.sqlite.db'
EOF > instance/config.py EOF
- run: - run:
name: Run coverage tests name: Run coverage tests