# conftest.py import os import pytest @pytest.fixture(autouse=True) def aws_credentials(): os.environ["AWS_ACCESS_KEY"] = "testing" os.environ["AWS_SECRET_ACCESS_KEY"] = "testing" os.environ["AWS_REGION"] = "ca-central-1"