We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9850550 commit 3cfecaeCopy full SHA for 3cfecae
src/tests/aws_bedrock/conftest.py
@@ -14,7 +14,9 @@
14
@pytest.fixture(autouse=True)
15
def environment():
16
if not os.getenv("AWS_ACCESS_KEY_ID"):
17
- os.environ["AWS_ACCESS_KEY_ID"] = "test_api_key"
+ 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"
20
21
22
@pytest.fixture
0 commit comments