Skip to content

Commit b4087fa

Browse files
committed
Remove the exclusion of the setup-test-cluster profile
Not used anymore
1 parent e9a72db commit b4087fa

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ make deps
181181

182182
[source,shell]
183183
----
184-
./mvnw clean package -Dmaven.test.skip -P '!setup-test-cluster'
184+
./mvnw clean package -Dmaven.test.skip
185185
----
186186

187187
=== Launching Tests with the Broker Running in a Docker Container
@@ -197,7 +197,7 @@ Launch "essential" tests (takes about 10 minutes):
197197

198198
[source,shell]
199199
----
200-
./mvnw verify -P '!setup-test-cluster' \
200+
./mvnw verify \
201201
-Drabbitmqctl.bin=DOCKER:rabbitmq \
202202
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
203203
----
@@ -206,7 +206,7 @@ Launch a single test:
206206

207207
[source,shell]
208208
----
209-
./mvnw verify -P '!setup-test-cluster' \
209+
./mvnw verify \
210210
-Drabbitmqctl.bin=DOCKER:rabbitmq \
211211
-Dit.test=DeadLetterExchange
212212
----
@@ -218,7 +218,7 @@ system property must point to the `rabbitmqctl` program:
218218

219219
[source,shell]
220220
----
221-
./mvnw verify -P '!setup-test-cluster' \
221+
./mvnw verify \
222222
-Dtest-broker.A.nodename=rabbit@$(hostname) \
223223
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
224224
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
@@ -228,7 +228,7 @@ To launch a single test:
228228

229229
[source,shell]
230230
----
231-
./mvnw verify -P '!setup-test-cluster' \
231+
./mvnw verify \
232232
-Dtest-broker.A.nodename=rabbit@$(hostname) \
233233
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
234234
-Dit.test=DeadLetterExchange

RUNNING_TESTS.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ make deps
3434
To run a subset of the test suite (do not forget to start a local RabbitMQ node):
3535

3636
```
37-
./mvnw verify -P '!setup-test-cluster' \
37+
./mvnw verify \
3838
-Dtest-broker.A.nodename=rabbit@$(hostname) \
3939
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
4040
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
@@ -47,7 +47,7 @@ The previous command launches tests against the blocking IO connector.
4747
To run the tests against the NIO connector, add `-P use-nio` to the command line:
4848

4949
```
50-
./mvnw verify -P '!setup-test-cluster',use-nio \
50+
./mvnw verify -P use-nio \
5151
-Dtest-broker.A.nodename=rabbit@$(hostname) \
5252
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
5353
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
@@ -64,7 +64,7 @@ top-level directory of the source tree:
6464
* To run the client unit tests:
6565

6666
```
67-
./mvnw verify -P '!setup-test-cluster',use-nio \
67+
./mvnw verify -P use-nio \
6868
-Dtest-broker.A.nodename=rabbit@$(hostname) \
6969
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
7070
-Dit.test=ClientTestSuite
@@ -73,7 +73,7 @@ top-level directory of the source tree:
7373
* To run the functional tests:
7474

7575
```
76-
./mvnw verify -P '!setup-test-cluster',use-nio \
76+
./mvnw verify -P use-nio \
7777
-Dtest-broker.A.nodename=rabbit@$(hostname) \
7878
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
7979
-Dit.test=FunctionalTestSuite
@@ -82,7 +82,7 @@ top-level directory of the source tree:
8282
* To run a single test:
8383

8484
```
85-
./mvnw verify -P '!setup-test-cluster',use-nio \
85+
./mvnw verify -P use-nio \
8686
-Dtest-broker.A.nodename=rabbit@$(hostname) \
8787
-Drabbitmqctl.bin=/path/to/rabbitmqctl \
8888
-Dit.test=DeadLetterExchange
@@ -101,7 +101,7 @@ docker run -it --rm --name rabbitmq -p 5672:5672 rabbitmq:3.8
101101
Launch the tests:
102102

103103
```
104-
./mvnw verify -P '!setup-test-cluster' \
104+
./mvnw verify \
105105
-Drabbitmqctl.bin=DOCKER:rabbitmq \
106106
-Dit.test=ClientTestSuite,FunctionalTestSuite,ServerTestSuite
107107
```

generate-observation-documentation.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
./mvnw -q -P '!setup-test-cluster' test-compile exec:java \
3+
./mvnw -q test-compile exec:java \
44
-Dexec.mainClass=io.micrometer.docs.DocsGeneratorCommand \
55
-Dexec.classpathScope="test" \
66
-Dexec.args='src/main/java/com/rabbitmq/client/observation/micrometer .* target/micrometer-observation-docs'

0 commit comments

Comments
 (0)