Skip to content

re-implement flatten_errors to rely on a queue instead of recursion t… #230

re-implement flatten_errors to rely on a queue instead of recursion t…

re-implement flatten_errors to rely on a queue instead of recursion t… #230

Workflow file for this run

name: Coverage
on:
- push
- pull_request
jobs:
run:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v3
with:
python-version: 3.8
- name: Generate coverage report
run: |
pip install .
pip install django~=3.2 pytest pytest-django pytest-cov drf-spectacular django-filter
pytest --cov --cov-report=xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true