From 97eac5eb73e41d8b5d09b6298d1c68c08dba5c82 Mon Sep 17 00:00:00 2001 From: "Brian D. Caruso" Date: Wed, 11 Oct 2023 14:11:37 -0400 Subject: [PATCH] moves tests inside poetry run in workflow --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 92e30ddd3..58c19d947 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -36,4 +36,4 @@ jobs: # flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics - name: Test with pytest run: | - pytest tests + poetry run pytest tests