Unpin most dependencies, and fix moto

This commit is contained in:
Curtis Castrapel
2018-11-05 14:37:52 -08:00
parent 8e3f9a3c5a
commit 75183ef2f2
8 changed files with 36 additions and 23 deletions

View File

@ -240,3 +240,11 @@ def cert_builder(private_key):
.public_key(private_key.public_key())
.not_valid_before(datetime.datetime(2017, 12, 22))
.not_valid_after(datetime.datetime(2040, 1, 1)))
@pytest.fixture(scope='function')
def aws_credentials():
os.environ['AWS_ACCESS_KEY_ID'] = 'testing'
os.environ['AWS_SECRET_ACCESS_KEY'] = 'testing'
os.environ['AWS_SECURITY_TOKEN'] = 'testing'
os.environ['AWS_SESSION_TOKEN'] = 'testing'