Skip to content

Commit

Permalink
Merge pull request #29338 from gsmet/flaky-tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Nov 17, 2022
2 parents 431666d + ee4b274 commit 3c920f7
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
import io.quarkus.test.junit.QuarkusTest;
import io.restassured.RestAssured;

@DisabledOnOs(OS.WINDOWS)
@DisabledOnOs({ OS.WINDOWS, OS.MAC })
@QuarkusTest
@QuarkusTestResource(FakeMailerTestResource.class)
public class MailerTest {
Expand Down Expand Up @@ -112,7 +112,6 @@ public void sendEmailToMultipleRecipients() {
}

@Test
@DisabledOnOs(OS.MAC)
public void sendHtmlEmail() {
RestAssured.get("/mail/html");

Expand Down
1 change: 0 additions & 1 deletion integration-tests/micrometer-prometheus/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
<dependency>
<groupId>io.quarkus</groupId>
<artifactId>quarkus-micrometer-registry-prometheus</artifactId>
<version>${project.version}</version>
</dependency>

<!-- Hibernate -->
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,6 @@ quarkus.rest-client.pingpong.url=${test.url}
quarkus.rest-client.read-timeout=1000

deployment.env=test

# Disable Kubernetes dev services as not supported on Windows
quarkus.kubernetes-client.devservices.enabled=false

0 comments on commit 3c920f7

Please sign in to comment.