mirror of
https://github.com/shouptech/flask-tutorial.git
synced 2026-02-03 15:39:44 +00:00
17 lines
324 B
YAML
17 lines
324 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 -m
|
|
- run: pip install codecov
|
|
- run: codecov
|