From 031ef4cf141827f9cedccdea3763f7de2a356819 Mon Sep 17 00:00:00 2001 From: Marcelo Lotif Date: Wed, 27 Nov 2024 14:58:15 -0500 Subject: [PATCH] Changing things --- .github/workflows/integration_tests.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 7c3f457..2240b31 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -57,12 +57,17 @@ jobs: uses: supercharge/mongodb-github-action@1.11.0 with: mongodb-version: 7.0.8 - - name: Install dependencies and check code + - name: Install dependencies run: | poetry env use '3.10' source .venv/bin/activate poetry install --with docs,test - coverage run -m pytest florist/tests/integration && coverage xml && coverage report -m + - name: Run integration tests + run: | + source .venv/bin/activate + coverage run -m pytest florist/tests/integration + coverage xml + coverage report -m - name: Upload python coverage to Codecov uses: Wandalen/wretry.action@v3.7.3 with: