From aff19f074b31ac1da73c03daf7809205a1a90372 Mon Sep 17 00:00:00 2001 From: dotX12 Date: Tue, 4 Feb 2025 06:31:02 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20chore(`.github/workflows/pytest.?= =?UTF-8?q?yml`):=20Update=20poetry=20install=20commands=20to=20use=20`--w?= =?UTF-8?q?ith=20dev`=20flag.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/pytest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 5caf5c9..f9597f4 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -46,12 +46,12 @@ jobs: - name: Install dependencies if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true' - run: poetry install --only=dev --no-interaction --no-root + run: poetry install --with dev --no-interaction --no-root #---------------------------------------------- # install your root project, if required #---------------------------------------------- - name: Install library - run: poetry install --only=dev --no-interaction + run: poetry install --with dev --no-interaction #---------------------------------------------- # run test suite #----------------------------------------------