Skip to content

Commit cdb15fa

Browse files
ykmr1224asifabashar
authored andcommitted
Execute yamlRestTest in integration job (opensearch-project#4838)
Signed-off-by: Tomoyuki Morita <moritato@amazon.com>
1 parent 34eeb4a commit cdb15fa

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/sql-test-and-build-workflow.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ jobs:
5252
run: |
5353
chown -R 1000:1000 `pwd`
5454
if [ "${{ matrix.test-type }}" = "unit" ]; then
55-
su `id -un 1000` -c "./gradlew --continue build -x integTest -x doctest"
55+
su `id -un 1000` -c "./gradlew --continue build -x integTest -x yamlRestTest -x doctest"
5656
elif [ "${{ matrix.test-type }}" = "integration" ]; then
57-
su `id -un 1000` -c "./gradlew --continue integTest"
57+
su `id -un 1000` -c "./gradlew --continue integTest yamlRestTest"
5858
else
5959
su `id -un 1000` -c "./gradlew --continue doctest"
6060
fi
@@ -130,9 +130,9 @@ jobs:
130130
- name: Build and Test
131131
run: |
132132
if [ "${{ matrix.test-type }}" = "unit" ]; then
133-
./gradlew --continue build -x integTest -x doctest ${{ matrix.entry.os_build_args }}
133+
./gradlew --continue build -x integTest -x yamlRestTest -x doctest ${{ matrix.entry.os_build_args }}
134134
elif [ "${{ matrix.test-type }}" = "integration" ]; then
135-
./gradlew --continue integTest ${{ matrix.entry.os_build_args }}
135+
./gradlew --continue integTest yamlRestTest ${{ matrix.entry.os_build_args }}
136136
else
137137
./gradlew --continue doctest ${{ matrix.entry.os_build_args }}
138138
fi

0 commit comments

Comments
 (0)