From 0ab9427493622a068dd80709018e95489950445b Mon Sep 17 00:00:00 2001 From: Jacobi Petrucciani Date: Fri, 19 Jul 2019 15:37:19 -0400 Subject: [PATCH] adding a potential fix for the python 3.5 boto issues --- tests/conftest.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/conftest.py b/tests/conftest.py index edad1ca..5849503 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,9 +1,14 @@ import bucketstore +import os import pytest from moto import mock_s3 from typing import Generator +# this is to attempt to hack our way around boto issues +os.environ["AWS_DEFAULT_REGION"] = "us-east-1" + + @pytest.fixture(autouse=True) def login() -> Generator: """Fixture that will automatically set the login variables."""