diff --git a/.github/workflows/plugin-tests.yml b/.github/workflows/plugin-tests.yml index b10cfce..36aa4eb 100644 --- a/.github/workflows/plugin-tests.yml +++ b/.github/workflows/plugin-tests.yml @@ -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 diff --git a/plugin/src/test/java/wand555/github/io/challenges/integration/IntegrationTestSetupExtension.java b/plugin/src/test/java/wand555/github/io/challenges/integration/IntegrationTestSetupExtension.java index 2fba999..8345631 100644 --- a/plugin/src/test/java/wand555/github/io/challenges/integration/IntegrationTestSetupExtension.java +++ b/plugin/src/test/java/wand555/github/io/challenges/integration/IntegrationTestSetupExtension.java @@ -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();