diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 4b133bf..0207bda 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -35,4 +35,4 @@ jobs: if [ $? -ne 0 ]; then git --no-pager diff exit 1 - fi \ No newline at end of file + fi diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 46748d3..7011b9e 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -26,13 +26,9 @@ jobs: - name: Install dependencies run: | bash .github/unittest/install_dependencies_nightly.sh - - name: Test with pytest run: | - pytest test/ --doctest-modules --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html - - - if: matrix.python-version == '3.11' && matrix.os == 'ubuntu-latest' - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 - with: - fail_ci_if_error: false + pytest tests/ --cov=acegen + - name: Check coverage + run: | + coverage report