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 f6e461c commit 75c87b2Copy full SHA for 75c87b2
1 file changed
.github/workflows/PR_Approval.yml
@@ -34,4 +34,9 @@ jobs:
34
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
35
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
36
- name: Unittest with pytest
37
+ env:
38
+ # Dummy credentials so boto3 doesn't fail during test collection
39
+ AWS_ACCESS_KEY_ID: 'test_key'
40
+ AWS_SECRET_ACCESS_KEY: 'test_secret'
41
+ AWS_DEFAULT_REGION: 'us-east-2'
42
run: python -m pytest -v tests/unittest
0 commit comments