Skip to content

Update setup.py (#21) #51

Update setup.py (#21)

Update setup.py (#21) #51

Workflow file for this run

name: codecov (coverage tests)
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-dev.txt
- name: Run tests and collect coverage
run: pytest --cov themoviedb/
- name: Upload coverage reports to Codecov
run: |
curl -Os https://uploader.codecov.io/latest/linux/codecov
chmod +x codecov
./codecov -t ${CODECOV_TOKEN}