From ba5e97d97d1807a88fc47b24ecb9cb3d04928145 Mon Sep 17 00:00:00 2001 From: Motov Yurii <109919500+YuriiMotov@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:16:32 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20Configure=20coverage,=20error=20?= =?UTF-8?q?on=20main=20tests,=20don't=20wait=20for=20Smokeshow=20(#1683)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 641c8829..dadb437f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -124,7 +124,6 @@ jobs: run: uv pip install -r requirements-tests.txt - run: ls -la coverage - run: coverage combine coverage - - run: coverage report - run: coverage html --title "Coverage for ${{ github.sha }}" - name: Store coverage HTML uses: actions/upload-artifact@v5 @@ -132,6 +131,7 @@ jobs: name: coverage-html path: htmlcov include-hidden-files: true + - run: coverage report --fail-under=99 # https://github.com/marketplace/actions/alls-green#why alls-green: # This job does nothing and is only used for the branch protection