Skip to content

Commit

Permalink
add aws credentials for plugin integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fhnaumann committed Oct 15, 2024
1 parent da46695 commit 4f0144c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/plugin-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,10 @@ jobs:
distribution: 'adopt'
- name: Run Integration Tests
working-directory: plugin
env:
AWS_REGION: eu-central-1
AWS_ACCESS_KEY_ID: ${{ secrets.PLUGIN_INTEGRATION_TEST_AWS_ACCESS_KEY }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.PLUGIN_INTEGRATION_TEST_AWS_SECRET_KEY }}
run: mvn clean test-compile failsafe:integration-test failsafe:verify -P plugin -Dstage=testing
- name: Report Integration Tests
uses: dorny/test-reporter@v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ public void beforeAll(ExtensionContext extensionContext) throws Exception {
Assertions.fail("Stage variable not set to 'testing' when running the test suite. Aborting!");
}
DynamoDBHelper.clearDynamoDBTestingTable();
// A comment
// A comment 2
// TODO: clear s3

DynamoDBHelper.setUpEmptyDynamoDBTestingTable();
Expand Down

0 comments on commit 4f0144c

Please sign in to comment.