From 524ca4b96e7ed1464a4968620a7fb0567f7783aa Mon Sep 17 00:00:00 2001 From: Thomas Cardin <49320132+ThomasCardin@users.noreply.github.com> Date: Tue, 26 Nov 2024 12:09:48 -0500 Subject: [PATCH] lint python test: python -m pytest --no-showlocals --- .github/workflows/workflow-lint-test-python.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow-lint-test-python.yml b/.github/workflows/workflow-lint-test-python.yml index f3cfd76d..063d2b48 100644 --- a/.github/workflows/workflow-lint-test-python.yml +++ b/.github/workflows/workflow-lint-test-python.yml @@ -49,9 +49,9 @@ jobs: - name: Test with pytest run: | - python -m pytest + python -m pytest --no-showlocals - name: Run tests with coverage (coverage must be at least 80% to pass) if: inputs.skip-coverage != 'true' run: | - python -m pytest --cov=. --cov-fail-under=80 + python -m pytest --cov=. --cov-fail-under=80 --no-showlocals