diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cb9d7f3..09b9c65 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,13 +44,13 @@ jobs: - name: Run unit tests run: | - pytest --junitxml=junit_pytest_main.xml + pytest --junitxml=junit_pytest_main.xml --cov-report=term-missing:skip-covered mv .coverage .coverage_main - name: Run Django integration tests working-directory: ./edtf_django_tests run: | - pytest edtf_integration/tests.py --ds=edtf_django_tests.settings --junitxml=../junit_pytest_django.xml + pytest edtf_integration/tests.py --ds=edtf_django_tests.settings --junitxml=../junit_pytest_django.xml --cov-report=term-missing:skip-covered mv .coverage ../.coverage_django - name: Combine coverage reports