Skip to content

Commit 49da776

Browse files
committed
Group redis integration tests into folder
1 parent f1b52f3 commit 49da776

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+26
-5
lines changed

.github/native-tests.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
{
2828
"category": "Data4",
2929
"timeout": 60,
30-
"test-modules": "mongodb-client, mongodb-devservices, mongodb-panache, mongodb-rest-data-panache, mongodb-panache-kotlin, redis-client, hibernate-orm-rest-data-panache",
30+
"test-modules": "mongodb-client, mongodb-devservices, mongodb-panache, mongodb-rest-data-panache, mongodb-panache-kotlin, redis/redis-client, hibernate-orm-rest-data-panache",
3131
"os-name": "ubuntu-latest"
3232
},
3333
{
@@ -93,7 +93,7 @@
9393
{
9494
"category": "Cache",
9595
"timeout": 75,
96-
"test-modules": "infinispan-cache-jpa, infinispan-client, cache, redis-cache, infinispan-cache",
96+
"test-modules": "infinispan-cache-jpa, infinispan-client, cache, redis/redis-cache, infinispan-cache",
9797
"os-name": "ubuntu-latest"
9898
},
9999
{

integration-tests/pom.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -332,8 +332,6 @@
332332
<module>smallrye-stork-registration</module>
333333
<module>jpa-without-entity</module>
334334
<module>quartz</module>
335-
<module>redis-client</module>
336-
<module>redis-cache</module>
337335
<module>logging-gelf</module>
338336
<module>cache</module>
339337
<module>qute</module>
@@ -394,7 +392,7 @@
394392
<module>logging-panache</module>
395393
<module>logging-panache-kotlin</module>
396394
<module>locales</module>
397-
<module>redis-devservices</module>
395+
<module>redis</module>
398396
<module>jfr-reactive</module>
399397
<module>jfr-blocking</module>
400398
<module>jfr-opentelemetry</module>

integration-tests/redis/pom.xml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
<parent>
6+
<artifactId>quarkus-integration-tests-parent</artifactId>
7+
<groupId>io.quarkus</groupId>
8+
<version>999-SNAPSHOT</version>
9+
</parent>
10+
<modelVersion>4.0.0</modelVersion>
11+
12+
<artifactId>quarkus-integration-test-redis</artifactId>
13+
<name>Quarkus - Integration Tests - Redis</name>
14+
15+
<packaging>pom</packaging>
16+
17+
<modules>
18+
<module>redis-cache</module>
19+
<module>redis-client</module>
20+
<module>redis-devservices</module>
21+
</modules>
22+
23+
</project>

0 commit comments

Comments
 (0)