From 58d98e0dba4c2cfed2cc2975835915a2fa31d7ba Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Mon, 9 Oct 2023 21:30:19 +0200 Subject: [PATCH] fix htmlcov --- .github/workflows/python-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 00e556c..0f6e8ea 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -37,9 +37,9 @@ jobs: - name: Test with pytest run: | pip install pytest pytest-cov - pytest --cov-report html --cov="./coverage-report/" tests/ + pytest --cov-report html --cov="." tests/ - name: upload coverage data uses: actions/upload-artifact@v3 with: - name: coverage-report - path: ./coverage-report/ \ No newline at end of file + name: htmlcov + path: ./htmlcov \ No newline at end of file