Skip to content

Commit

Permalink
Disable VertxMDCTest on Windows
Browse files Browse the repository at this point in the history
It has been extremely unstable for weeks now. Let's disable it until we
have time to fix it.
  • Loading branch information
gsmet committed Oct 24, 2023
1 parent e59fe0a commit 9228fad
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.RepeatedTest;
import org.junit.jupiter.api.condition.DisabledOnOs;
import org.junit.jupiter.api.condition.OS;
import org.junit.jupiter.api.extension.RegisterExtension;

import io.quarkus.bootstrap.logging.InitialConfigurator;
Expand All @@ -43,7 +45,7 @@
/*
This test was mostly based on https://github.com/reactiverse/reactiverse-contextual-logging/blob/39e691d3a8fd78d19ee120cab8d8b38a4ef67813/src/test/java/io/reactiverse/contextual/logging/ContextualLoggingIT.java
*/

@DisabledOnOs(OS.WINDOWS)
public class VertxMDCTest {
private static final Logger LOGGER = Logger.getLogger(VertxMDCTest.class);

Expand Down

0 comments on commit 9228fad

Please sign in to comment.