From d6c285e59da398e05185461763fa1cbd82834e72 Mon Sep 17 00:00:00 2001 From: scito Date: Fri, 30 Dec 2022 18:23:31 +0100 Subject: [PATCH] ci: segfault: try python -m pytest --- .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 248ffba..bac606d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -50,7 +50,7 @@ jobs: mypy --strict src/*.py tests/*.py if: matrix.python-version == '3.x' - name: Test with pytest - run: pytest + run: python -m pytest if: matrix.python-version != '3.x' || matrix.platform == 'ubuntu-latest' - name: Test with pytest (with code coverage) run: pytest --cov=test_extract_otp_secret_keys_pytest --junitxml=pytest.xml --cov-report=term-missing | tee pytest-coverage.txt