From 572128b663baebefd837280836160aa2e1ab961c Mon Sep 17 00:00:00 2001 From: Martin Wistuba Date: Sat, 29 Jun 2024 14:31:06 +0200 Subject: [PATCH] upgrade poetry and fix test name --- .github/workflows/documentation.yml | 2 +- .github/workflows/tests.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index ff2f7dd6..413e93d2 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -32,7 +32,7 @@ jobs: - name: Install and configure Poetry uses: snok/install-poetry@v1 with: - version: 1.2.2 + version: 1.8.3 virtualenvs-create: true virtualenvs-in-project: false installer-parallel: true diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dbfb61f1..60356575 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -28,7 +28,7 @@ jobs: - name: Install Poetry uses: snok/install-poetry@v1.3.3 with: - version: 1.4.0 + version: 1.8.3 # Configure Poetry to use the virtual environment in the project - name: Setup Poetry @@ -38,7 +38,7 @@ jobs: # Install the dependencies - name: Install Package run: | - poetry install --with tests + poetry install --with test # Run the unit tests and build the coverage report - name: Run Tests