Skip to content

Commit

Permalink
:bandaid: Disable coverage library
Browse files Browse the repository at this point in the history
The CI pipeline is hanging - see nedbat/coveragepy#1559 for details.

Disabling coverage.py completely for now at least
let's us run tests for ongoing work.
  • Loading branch information
sergei-maertens committed Feb 21, 2023
1 parent 09e724b commit c2182f7
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,13 +96,16 @@ jobs:
run: |
python src/manage.py compilemessages
python src/manage.py collectstatic --noinput --link
coverage run \
--concurrency=multiprocessing \
--parallel-mode \
src/manage.py test src \
--parallel 2 \
--exclude-tag=e2e
coverage combine
src/manage.py test src \
--parallel 2 \
--exclude-tag=e2e
# coverage run \
# --concurrency=multiprocessing \
# --parallel-mode \
# src/manage.py test src \
# --parallel 2 \
# --exclude-tag=e2e
# coverage combine
env:
DJANGO_SETTINGS_MODULE: openforms.conf.ci
Expand All @@ -113,8 +116,8 @@ jobs:
- name: Run JS tests
run: npm test

- name: Publish coverage report
uses: codecov/codecov-action@v3
# - name: Publish coverage report
# uses: codecov/codecov-action@v3

- name: Generate OAS
run: ./bin/generate_oas.sh openapi.yaml
Expand Down

0 comments on commit c2182f7

Please sign in to comment.