From 45bf6f6b6563ec5a71d1f9417e3f581c8b4b8501 Mon Sep 17 00:00:00 2001 From: Nathan Thomas Date: Tue, 14 May 2024 16:41:21 -0700 Subject: [PATCH] Update pytest.yml --- .github/workflows/pytest.yml | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 9a83ec6..3b0ee92 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -21,15 +21,14 @@ jobs: uses: actions/setup-python@v4 with: python-version: '3.10' # Specify the Python version - - - name: Install Poetry - uses: snok/install-poetry@v2 + + - name: Install and configure Poetry + uses: snok/install-poetry@v1 with: - version: 1.3.2 # Specify the Poetry version - - - name: Configure Poetry - run: | - poetry config virtualenvs.create false + version: 1.5.1 + virtualenvs-create: false + virtualenvs-in-project: true + installer-parallel: true - name: Install dependencies run: poetry install