From bbed3f5e6da6483a1443fef264484e3c312f8ad4 Mon Sep 17 00:00:00 2001 From: Aleksandr Omyshev Date: Wed, 30 Oct 2024 12:03:14 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 573f24f..06224a6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -55,9 +55,7 @@ jobs: - name: Install Dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: | - poetry install --no-interaction --no-root - poetry run pip install --upgrade setuptools + run: poetry install --no-interaction --no-root - name: Install library run: poetry install --no-interaction @@ -177,7 +175,9 @@ jobs: run: poetry install --no-interaction - name: Run pytest - run: poetry run pytest tests/ + run: | + poetry run pip install --upgrade setuptools + poetry run pytest tests/ - name: Submit coverage report if: github.ref == 'refs/heads/master'