From b2e3906db4198369bbfd744f5613a21648940eee Mon Sep 17 00:00:00 2001 From: Will Gibson <8738245+WillGibson@users.noreply.github.com> Date: Tue, 12 Nov 2024 16:26:58 +0000 Subject: [PATCH] Try export AWS_REGION=eu-west-2 --- .github/workflows/unit-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 0fdb94dfb..3ec520b8d 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -30,7 +30,9 @@ jobs: poetry install - name: Run pytest - run: poetry run pytest --cov --cov-report=xml --junitxml=junit.xml -o junit_family=legacy + run: | + export AWS_REGION=eu-west-2 + poetry run pytest --cov --cov-report=xml --junitxml=junit.xml -o junit_family=legacy env: PYTHON_VERSION: ${{ matrix.python-version }}