Skip to content

updating docs config files #272

updating docs config files

updating docs config files #272

Workflow file for this run

# This workflow will generate a code coverage report for codecov
name: Codecov
on: [push]
jobs:
run:
runs-on: ubuntu-latest
env:
OS: ubuntu-latest
PYTHON: '3.9'
steps:
- uses: actions/checkout@master
with:
fetch-depth: 2
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Install depedendencies
run: |
pip install -r requirements.txt
pip install pytest
pip install pytest-cov
- name: Generate coverage report
run: pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
with:
fail_ci_if_error: true
verbose: true