From d94fbbdf7e0154697f2f1e5fe254b4d509c0d2d0 Mon Sep 17 00:00:00 2001 From: Ronnak Saxena Date: Wed, 6 Sep 2023 15:43:22 -0700 Subject: [PATCH] trying a new workflow build Signed-off-by: Ronnak Saxena --- .github/workflows/multi-node-test-workflow.yml | 4 ++-- .../indexmanagement/rollup/util/RollupUtilsTests.kt | 3 +++ 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/multi-node-test-workflow.yml b/.github/workflows/multi-node-test-workflow.yml index aaa37dc98..baa186175 100644 --- a/.github/workflows/multi-node-test-workflow.yml +++ b/.github/workflows/multi-node-test-workflow.yml @@ -3,7 +3,7 @@ name: Multi node test workflow on: pull_request: branches: - - "*" + - "**" push: branches: - "*" @@ -22,7 +22,7 @@ jobs: - name: Checkout Branch uses: actions/checkout@v2 - name: Run integration tests with multi node config - run: ./gradlew integTest -PnumNodes=3 + run: ./gradlew integTest -Dtests.class="org.opensearch.indexmanagement.rollup.interceptor.ResponseInterceptorIT" - name: Upload failed logs uses: actions/upload-artifact@v2 if: failure() diff --git a/src/test/kotlin/org/opensearch/indexmanagement/rollup/util/RollupUtilsTests.kt b/src/test/kotlin/org/opensearch/indexmanagement/rollup/util/RollupUtilsTests.kt index c063a3487..face563b2 100644 --- a/src/test/kotlin/org/opensearch/indexmanagement/rollup/util/RollupUtilsTests.kt +++ b/src/test/kotlin/org/opensearch/indexmanagement/rollup/util/RollupUtilsTests.kt @@ -230,4 +230,7 @@ class RollupUtilsTests : OpenSearchTestCase() { assertEquals("Rewritten aggregation builder is not the correct type", aggBuilder.type, rewrittenAgg.type) } } + fun `test changeAggregations`() { + /* add later */ + } }