1
0
Fork 0
mirror of https://github.com/shouptech/flask-tutorial.git synced 2026-02-03 15:39:44 +00:00
flask-tutorial/.circleci/config.yml
2018-11-02 19:11:03 -06:00

17 lines
321 B
YAML

version: 2
jobs:
build:
docker:
- image: python:3
environment:
SECRET_KEY: DEV
steps:
- checkout
- run: pip install pytest coverage
- run: pip install -e .
- run: coverage run -m pytest
- run: coverage report
- run: pip install codecov
- run: codecov