Skip to content

Commit 11f75e7

Browse files
committed
Disable failing test due to slow runner
1 parent 32b636b commit 11f75e7

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/validate.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ jobs:
108108
- { os: ubuntu-20.04, platform: linux }
109109
- { os: windows-2022, platform: windows }
110110
runs-on: ${{ matrix.os }}
111-
name: tests/${{ matrix.moduleSet }}
111+
name: tests/${{ matrix.moduleSet }}-${{matrix.platform}}
112112
steps:
113113
- uses: actions/checkout@v4
114114
with:
@@ -220,10 +220,11 @@ jobs:
220220
timeout-minutes: 30
221221
strategy:
222222
matrix:
223-
os: [ ubuntu-20.04, macos-14 ]
223+
os: [ ubuntu-20.04, macos-14, windows-2022 ]
224224
include:
225225
- { os: ubuntu-20.04, platform: linux }
226226
- { os: macos-14, platform: macos }
227+
- { os: windows-2022, platform: windows }
227228
runs-on: ${{ matrix.os }}
228229
name: quickstarts/${{ matrix.platform }}
229230
steps:
@@ -320,7 +321,7 @@ jobs:
320321
include:
321322
- { os: ubuntu-20.04, platform: linux }
322323
- { os: macos-14, platform: macos }
323-
- { os: windows-2022, platform: windows }
324+
# - { os: windows-2022, platform: windows }
324325
runs-on: ${{ matrix.os }}
325326
name: tests/packaging-${{ matrix.packaging }}-${{ matrix.platform }}
326327
steps:

webclient/tests/grpc/src/test/java/io/helidon/webclient/grpc/tests/GrpcClientUriTest.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@
2929
import io.helidon.webserver.testing.junit5.ServerTest;
3030

3131
import org.junit.jupiter.api.Test;
32+
import org.junit.jupiter.api.condition.DisabledOnOs;
33+
import org.junit.jupiter.api.condition.OS;
3234

3335
import static org.hamcrest.CoreMatchers.is;
3436
import static org.hamcrest.MatcherAssert.assertThat;
@@ -77,6 +79,7 @@ void testSupplier() {
7779
* Should fail to connect to first URI but succeed with second after retrying.
7880
*/
7981
@Test
82+
@DisabledOnOs(OS.WINDOWS)
8083
void testSupplierWithRetries() {
8184
CountDownLatch latch = new CountDownLatch(2);
8285
ClientUri badUri = ClientUri.create(URI.create("https://foo:8000"));

0 commit comments

Comments
 (0)