From 0ba8a62efd80c0f25207fffe908cb7bd718d3e90 Mon Sep 17 00:00:00 2001 From: Serdar Tumgoren Date: Wed, 3 Apr 2024 21:00:24 -0700 Subject: [PATCH] Add check for pytest version --- .github/workflows/continuous-deployment.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-deployment.yml b/.github/workflows/continuous-deployment.yml index 6f2e8d5b..56ec5f95 100644 --- a/.github/workflows/continuous-deployment.yml +++ b/.github/workflows/continuous-deployment.yml @@ -88,9 +88,9 @@ jobs: name: Install Python dependencies run: pipenv install --dev --python `which python` - - id: Check pytest version - name: Run tests - run: pipenv run pytest -sv + - id: check-pytest-version + name: Check Pytest Version + run: pipenv run pytest --version - id: run name: Run tests