circle.yml
# Python CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-python/ for more details
#
version: 2
jobs:
build:
machine: true
steps:
- checkout
- run: pip install -r requirements.txt
machine:
python:
version: 3.6.0
dependencies:
override:
- pip install codecov
- pip install -r requirements.txt
test:
override:
- coverage run tests/tests.py
post:
- codecov