From 8c90f7cb113d896521974883a85d37f8003af083 Mon Sep 17 00:00:00 2001 From: Giacomo Ferretti Date: Thu, 7 Nov 2024 20:12:05 +0100 Subject: [PATCH] fix(ci): wrong commands for pytest --- .github/workflows/run_tests.yml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/run_tests.yml b/.github/workflows/run_tests.yml index cc81210..c7501e8 100644 --- a/.github/workflows/run_tests.yml +++ b/.github/workflows/run_tests.yml @@ -20,14 +20,6 @@ jobs: python -m pip install --upgrade pip pip install poetry poetry install --with test - - name: Lint with Ruff - run: | - pip install ruff - ruff --format=github --target-version=py310 . - continue-on-error: true - name: Test with pytest run: | - coverage run -m pytest -v -s - - name: Generate Coverage Report - run: | - coverage report -m \ No newline at end of file + poetry run pytest \ No newline at end of file