From fa651babd0da50739d11f4329c2de23bdeb8be45 Mon Sep 17 00:00:00 2001 From: Egor Kostan Date: Mon, 11 Nov 2024 19:42:28 -0800 Subject: [PATCH] Update pytest.yml --- .github/workflows/pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 0cf948acc0d..9a0baa02d38 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -48,7 +48,7 @@ jobs: - name: Unitest with pytest # yamllint disable rule:line-length run: - python -m pytest . -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html + python -m pytest . -v -rP --doctest-modules --junitxml=junit/test-results-${{ matrix.os }}-${{ matrix.python-version }}.xml --cov-report term-missing --cov-fail-under=80 --cov=./kyu_2 --cov-report html:test-coverage-${{ matrix.os }}-${{ matrix.python-version }}.html # yamllint enable rule:line-length - name: Upload pytest test artifacts uses: actions/upload-artifact@v4