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:
parent
a6162261d9
commit
a7ab74683c
1 changed files with 2 additions and 2 deletions
|
|
@ -16,12 +16,12 @@ jobs:
|
|||
name: Create config file
|
||||
command: |
|
||||
mkdir -p instance
|
||||
echo << EOF
|
||||
cat << EOF > instance/config.py
|
||||
FLASK_APP='flaskr'
|
||||
FLASK_ENV='development'
|
||||
SECRET_KEY='test'
|
||||
SQLALCHEMY_DATABASE_URI='sqlite:////tmp/flaskr.sqlite.db'
|
||||
EOF > instance/config.py
|
||||
EOF
|
||||
|
||||
- run:
|
||||
name: Run coverage tests
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue