diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-22 11:18:32 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-22 11:18:32 +0100 |
| commit | 844d79fdcfb4ff7118f8ae02aa77b6a29f1467c2 (patch) | |
| tree | eddffb2d1fb1ef1fd974a21a572e3cf027b83695 | |
| parent | d5e4192a16eb6bb60e1f245124c681999a582572 (diff) | |
| download | de-project-bentley-844d79fdcfb4ff7118f8ae02aa77b6a29f1467c2.tar.gz de-project-bentley-844d79fdcfb4ff7118f8ae02aa77b6a29f1467c2.zip | |
feat: autouse credentials fixture
| -rw-r--r-- | tests/test_extract_lambda.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_extract_lambda.py b/tests/test_extract_lambda.py index 2f5ff71..9cf5684 100644 --- a/tests/test_extract_lambda.py +++ b/tests/test_extract_lambda.py @@ -34,7 +34,7 @@ def mock_config(): yield mock_config -@pytest.fixture(scope="function") +@pytest.fixture(scope="function", autouse=True) def aws_credentials(): os.environ["AWS_ACCESS_KEY_ID"] = "testing" os.environ["AWS_SECRET_ACCESS_KEY"] = "testing" |
