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

15 lines
267 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