Skip to content

Add a test for takeout activity data #591

Add a test for takeout activity data

Add a test for takeout activity data #591

Workflow file for this run

name: Codecov
on: [push, pull_request]
jobs:
test:
name: codecov
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- '3.9'
steps:
- uses: actions/checkout@v2
- name: setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: install deps
run: |
pip install -r requirements-dev.txt
- name: Run tests and collect coverage
run: |
coverage run -m pytest
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2