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:00:54 -06:00

12 lines
227 B
YAML

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