forked from quarkusio/quarkus
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Disable the MP REST Client Timeout tests for now
Related to quarkusio#27513
- Loading branch information
Showing
1 changed file
with
3 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -301,6 +301,9 @@ sed -i '[email protected]:[email protected]:narayana-lr | |
sed -i '[email protected]:[email protected]:lra-client-jakarta@g' extensions/narayana-lra/runtime/pom.xml | ||
sed -i 's@META-INF/services/javax.ws.rs.client.ClientBuilder@META-INF/services/jakarta.ws.rs.client.ClientBuilder@g' extensions/narayana-lra/runtime/pom.xml | ||
|
||
# Disable REST Client TCK timeout tests that are not working | ||
sed -i 's@ <!-- ConversationScope not supported in Quarkus -->@ <!-- Jakarta - These tests fail because they time out far after what it should be, not sure about the reason... -->\n <exclude>org.eclipse.microprofile.rest.client.tck.timeout.TimeoutBuilderIndependentOfMPConfigTest</exclude>\n <exclude>org.eclipse.microprofile.rest.client.tck.timeout.TimeoutTest</exclude>\n <exclude>org.eclipse.microprofile.rest.client.tck.timeout.TimeoutViaMPConfigTest</exclude>\n <exclude>org.eclipse.microprofile.rest.client.tck.timeout.TimeoutViaMPConfigWithConfigKeyTest</exclude>\n <!-- ConversationScope not supported in Quarkus -->@' tcks/microprofile-rest-client/pom.xml | ||
|
||
find integration-tests/gradle -name build.gradle | xargs sed -i 's/javax.enterprise.context.ApplicationScoped/jakarta.enterprise.context.ApplicationScoped/g' | ||
find integration-tests/gradle -name build.gradle | xargs sed -i 's/javax.ws.rs.Path/jakarta.ws.rs.Path/g' | ||
|
||
|