Skip to content

Commit 3cfecae

Browse files
committed
set test aws key
1 parent 9850550 commit 3cfecae

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/tests/aws_bedrock/conftest.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@
1414
@pytest.fixture(autouse=True)
1515
def environment():
1616
if not os.getenv("AWS_ACCESS_KEY_ID"):
17-
os.environ["AWS_ACCESS_KEY_ID"] = "test_api_key"
17+
os.environ["AWS_ACCESS_KEY_ID"] = "test_aws_access_key_id"
18+
if not os.getenv("AWS_SECRET_ACCESS_KEY"):
19+
os.environ["AWS_SECRET_ACCESS_KEY"] = "test_aws_secret_access_key"
1820

1921

2022
@pytest.fixture

0 commit comments

Comments
 (0)