Skip to content

Add defalt_propagation_seconds (#26) #86

Add defalt_propagation_seconds (#26)

Add defalt_propagation_seconds (#26) #86

Workflow file for this run

name: Tests, Coverage
on: [push]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11' ]
steps:
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Dependencies
run: |
python -m pip install --upgrade pip
pip install -e .
- name: Testing with tox
run: |
pip install tox tox-gh-actions
tox
- name: Generate coverage report
run: |
pip install pytest
pip install pytest-cov
pytest --cov=./ --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml
flags: unittests
name: codecov-umbrella
fail_ci_if_error: true