Skip to content

Group redis integration tests into folder #47611

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/native-tests.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
{
"category": "Data4",
"timeout": 60,
"test-modules": "mongodb-client, mongodb-devservices, mongodb-panache, mongodb-rest-data-panache, mongodb-panache-kotlin, redis-client, hibernate-orm-rest-data-panache",
"test-modules": "mongodb-client, mongodb-devservices, mongodb-panache, mongodb-rest-data-panache, mongodb-panache-kotlin, redis/redis-client, hibernate-orm-rest-data-panache",
"os-name": "ubuntu-latest"
},
{
Expand Down Expand Up @@ -93,7 +93,7 @@
{
"category": "Cache",
"timeout": 75,
"test-modules": "infinispan-cache-jpa, infinispan-client, cache, redis-cache, infinispan-cache",
"test-modules": "infinispan-cache-jpa, infinispan-client, cache, redis/redis-cache, infinispan-cache",
"os-name": "ubuntu-latest"
},
{
Expand Down
4 changes: 1 addition & 3 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -332,8 +332,6 @@
<module>smallrye-stork-registration</module>
<module>jpa-without-entity</module>
<module>quartz</module>
<module>redis-client</module>
<module>redis-cache</module>
<module>logging-gelf</module>
<module>cache</module>
<module>qute</module>
Expand Down Expand Up @@ -394,7 +392,7 @@
<module>logging-panache</module>
<module>logging-panache-kotlin</module>
<module>locales</module>
<module>redis-devservices</module>
<module>redis</module>
<module>jfr-reactive</module>
<module>jfr-blocking</module>
<module>jfr-opentelemetry</module>
Expand Down
23 changes: 23 additions & 0 deletions integration-tests/redis/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<parent>
<artifactId>quarkus-integration-tests-parent</artifactId>
<groupId>io.quarkus</groupId>
<version>999-SNAPSHOT</version>
</parent>
<modelVersion>4.0.0</modelVersion>

<artifactId>quarkus-integration-test-redis</artifactId>
<name>Quarkus - Integration Tests - Redis</name>

<packaging>pom</packaging>

<modules>
<module>redis-cache</module>
<module>redis-client</module>
<module>redis-devservices</module>
</modules>

</project>
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-integration-tests-parent</artifactId>
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>quarkus-integration-test-redis-cache</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-integration-tests-parent</artifactId>
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>

<artifactId>quarkus-integration-test-redis-client</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<groupId>io.quarkus</groupId>
<artifactId>quarkus-integration-tests-parent</artifactId>
<version>999-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
<relativePath>../../pom.xml</relativePath>
</parent>
<artifactId>quarkus-integration-test-redis-devservices</artifactId>
<name>Quarkus - Integration Tests - Redis DevService</name>
Expand Down
Loading