From 6191b5599e117f469718fa69a4bb452263f856dd Mon Sep 17 00:00:00 2001 From: Lucas Oliveira Date: Thu, 23 Jun 2022 17:28:19 -0300 Subject: [PATCH] update: tests pipeline --- .github/workflows/deploy.yml | 1 + .github/workflows/test.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 88098e7..d669f12 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,6 +26,7 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | + export PYTHONPATH=. pytest -vv deploy: runs-on: ubuntu-latest diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e955c58..eb12a08 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,4 +28,5 @@ jobs: if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: | + export PYTHONPATH=. pytest -vv \ No newline at end of file