From b234f6a7742b0bd2bb1c0287e1256b4412dfaba2 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 18 Oct 2024 18:22:37 +0200 Subject: [PATCH] CI: Fix wildcard usage in wheel installation. --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index edb47d69..1b465542 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -115,7 +115,7 @@ jobs: - name: Run tests run: | - python -m pip install dist/lupa-*.whl + bash -c "python -m pip install dist/lupa-*.whl" python -m lupa.tests.__main__ continue-on-error: ${{ contains(matrix.python-version, 'pypy') }}