From cc43885addd8158302ed95b8f5f261c6bf28364b Mon Sep 17 00:00:00 2001 From: onerandomusername Date: Wed, 25 Sep 2024 17:40:12 -0400 Subject: [PATCH] run tests on windows --- .github/workflows/lint_test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint_test.yml b/.github/workflows/lint_test.yml index 64d6823e..c19ff6ed 100644 --- a/.github/workflows/lint_test.yml +++ b/.github/workflows/lint_test.yml @@ -168,7 +168,7 @@ jobs: # coverage report to github. - name: Run tests and generate coverage report id: run_tests - run: poetry run pytest tests -n auto --dist loadfile --cov --disable-warnings -q + run: python -m poetry run pytest tests -n auto --dist loadfile --cov --disable-warnings -q # This step will publish the coverage reports to coveralls.io and # print a "job" link in the output of the GitHub Action @@ -183,7 +183,7 @@ jobs: COVERALLS_FLAG_NAME: coverage-${{ runner.os }}-python-${{ env.PYTHON_VERSION }} COVERALLS_PARALLEL: true COVERALLS_SERVICE_NAME: github - run: poetry run coveralls + run: python -m poetry run coveralls coveralls-finish: name: Indicate completion to coveralls.io