From b169caa22b9ae0f3d75c8b54c3c004be97e4e304 Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 20 Nov 2024 12:14:29 +0100 Subject: [PATCH 1/2] Show Python version in CI --- .github/workflows/ci.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 70b3bf405..c72063068 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,18 +43,21 @@ jobs: timeout-minutes: 15 if: ${{ !startsWith( matrix.python-version, 'pypy' ) && !startsWith(matrix.os, 'windows') }} run: | + hatch run test:python --version hatch run cov:test --cov-fail-under 50 || hatch run test:test --lf - name: Run the tests on pypy timeout-minutes: 15 if: ${{ startsWith( matrix.python-version, 'pypy' ) }} run: | + hatch run test:python --version hatch run test:nowarn || hatch run test:nowarn --lf - name: Run the tests on Windows timeout-minutes: 15 if: ${{ startsWith(matrix.os, 'windows') }} run: | + hatch run test:python --version hatch run cov:nowarn || hatch run test:nowarn --lf - name: Check Launcher From 7e644f5387774f27d8bb734add293b166b1339ab Mon Sep 17 00:00:00 2001 From: David Brochart Date: Wed, 20 Nov 2024 14:52:31 +0100 Subject: [PATCH 2/2] Empty commit