From 76f8ffd8ab68aadc77501054ab8a2ae8ae42bcb2 Mon Sep 17 00:00:00 2001 From: Mawoka Date: Sat, 9 Apr 2022 11:45:14 +0200 Subject: [PATCH] :construction_worker: 4th time fixing pytest --- .github/workflows/pytest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index ac9aeeb..f3686d2 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -26,7 +26,8 @@ jobs: python-version: "3.10" cache: 'pipenv' - run: pipenv install --dev - - run: echo ${{ secrets.DOTENV }} > .env + - run: echo ${{ secrets.DOTENV }} | base64 --decode > .env + - run: set -o allexport; source .env; set +o allexport - name: Prepare test environment run: | pipenv run coverage run -m pytest --asyncio-mode=strict classquiz/tests