File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed
core/deployment/src/main/java/io/quarkus/deployment/dev/testing Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change 77
88import io .quarkus .banner .BannerConfig ;
99import io .quarkus .builder .BuildResult ;
10+ import io .quarkus .deployment .dev .testing .TestConfig .Mode ;
1011import io .quarkus .deployment .steps .BannerProcessor ;
1112import io .quarkus .dev .console .QuarkusConsole ;
1213import io .quarkus .runtime .BannerRecorder ;
@@ -33,6 +34,9 @@ public boolean enabled() {
3334 return config .getOptionalValue ("quarkus.banner.enabled" , Boolean .class ).orElse (true );
3435 }
3536 })), banner ).getBannerSupplier ());
36- Logger .getLogger ("io.quarkus.test" ).info ("Quarkus continuous testing mode started" );
37+ if (!config .getOptionalValue ("quarkus.test.continuous-testing" , Mode .class ).orElse (Mode .PAUSED )
38+ .equals (Mode .DISABLED )) {
39+ Logger .getLogger ("io.quarkus.test" ).info ("Quarkus continuous testing mode started" );
40+ }
3741 }
3842}
You can’t perform that action at this time.
0 commit comments