Browse Source

💚 replace migrate

main
Julien Dudek 6 years ago
parent
commit
65a6e6407c
  1. 7
      .circleci/config.yml

7
.circleci/config.yml

@ -72,11 +72,11 @@ jobs:
# fallback to using the latest cache if no exact match is found
- run:
name: db & migrate
name: db migrate
command: |
. venv/bin/activate
sleep 1
flask db init
flask db migrate
environment:
CONDUIT_SECRET: 'something-really-secret'
FLASK_APP: /home/circleci/repo/autoapp.py
@ -92,11 +92,10 @@ jobs:
# https://pytest.org
# https://nose.readthedocs.io
- run:
name: run upgrade & tests
name: run tests
command: |
. venv/bin/activate
sleep 1
flask db upgrade
flask test
environment:
CONDUIT_SECRET: 'something-really-secret'

Loading…
Cancel
Save