Skip to content

Commit 52a3bdd

Browse files
committed
Re-enable httpclient integration test run
1 parent d7c8675 commit 52a3bdd

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

pom.xml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -596,6 +596,23 @@
596596
<plugin>
597597
<artifactId>maven-surefire-plugin</artifactId>
598598
<executions>
599+
<execution>
600+
<id>java11-test</id>
601+
<phase>integration-test</phase>
602+
<goals>
603+
<goal>test</goal>
604+
</goals>
605+
<configuration>
606+
<classesDirectory>${project.basedir}/target/${project.artifactId}-${project.version}.jar</classesDirectory>
607+
<useSystemClassLoader>false</useSystemClassLoader>
608+
<excludesFile>src/test/resources/slow-or-flaky-tests.txt</excludesFile>
609+
<argLine>@{jacoco.surefire.argLine} ${surefire.argLine} -Dtest.github.connector=httpclient</argLine>
610+
<!-- Run some test passes with trace logging turned on -->
611+
<systemPropertyVariables>
612+
<java.util.logging.config.file>src/test/resources/test-trace-logging.properties</java.util.logging.config.file>
613+
</systemPropertyVariables>
614+
</configuration>
615+
</execution>
599616
<execution>
600617
<id>okhttp-test</id>
601618
<phase>integration-test</phase>

0 commit comments

Comments
 (0)