champ-chatbot / conftest.py
qyle's picture
deployment
f80f41e verified
# 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"