Skip to content

Update codecov integration #11

Update codecov integration

Update codecov integration #11

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- uses: shogo82148/actions-setup-redis@v1
with:
redis-version: '6.x'
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Setup timezone
uses: zcong1993/setup-timezone@master
with:
timezone: EST
- name: Install dependencies
run: |
pip install pycodestyle coverage pytest
python setup.py install
- name: Run pycodestyle
run: |
pycodestyle --exclude=venv --ignore=E501 .
- name: Run pytest for main source
run: |
coverage run --parallel-mode --branch --source=. -m pytest
- name: Run pytest for clients source
run: |
coverage run --parallel-mode --branch --source=./clients/. -m pytest
- name: Combine coverage report
run: |
coverage combine
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}