File tree 3 files changed +2
-11
lines changed
src/test/java/com/rabbitmq/client/test/server
3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change @@ -46,15 +46,13 @@ jobs:
46
46
-Dtest-broker.A.nodename=rabbit@$(hostname) -Dtest-broker.B.nodename=hare@$(hostname) \
47
47
-Dmaven.javadoc.skip=true \
48
48
-Dtest-client-cert.password= -Dtest-tls-certs.dir=rabbitmq-configuration/tls \
49
- -Dit.test=HATests \
50
49
--no-transfer-progress
51
50
- name : Test with blocking IO
52
51
run : |
53
52
./mvnw verify -P '!setup-test-cluster' -Drabbitmqctl.bin=DOCKER:rabbitmq \
54
53
-Dtest-broker.A.nodename=rabbit@$(hostname) -Dtest-broker.B.nodename=hare@$(hostname) \
55
54
-Dmaven.javadoc.skip=true \
56
55
-Dtest-client-cert.password= -Dtest-tls-certs.dir=rabbitmq-configuration/tls \
57
- -Dit.test=HATests \
58
56
--no-transfer-progress
59
57
- name : Stop broker A
60
58
run : docker stop rabbitmq && docker rm rabbitmq
Original file line number Diff line number Diff line change @@ -49,15 +49,13 @@ jobs:
49
49
-Dtest-broker.A.nodename=rabbit@$(hostname) -Dtest-broker.B.nodename=hare@$(hostname) \
50
50
-Dmaven.javadoc.skip=true \
51
51
-Dtest-client-cert.password= -Dtest-tls-certs.dir=rabbitmq-configuration/tls \
52
- -Dit.test=HATests \
53
52
--no-transfer-progress
54
53
- name : Test with blocking IO
55
54
run : |
56
55
./mvnw verify -P '!setup-test-cluster' -Drabbitmqctl.bin=DOCKER:rabbitmq \
57
56
-Dtest-broker.A.nodename=rabbit@$(hostname) -Dtest-broker.B.nodename=hare@$(hostname) \
58
57
-Dmaven.javadoc.skip=true \
59
58
-Dtest-client-cert.password= -Dtest-tls-certs.dir=rabbitmq-configuration/tls \
60
- -Dit.test=HATests \
61
59
--no-transfer-progress
62
60
- name : Stop broker A
63
61
run : docker stop rabbitmq && docker rm rabbitmq
Original file line number Diff line number Diff line change 17
17
18
18
import com .rabbitmq .client .test .AbstractRMQTestSuite ;
19
19
import com .rabbitmq .client .test .RequiredPropertiesSuite ;
20
- import com .rabbitmq .client .test .functional .DeadLetterExchange ;
21
- import com .rabbitmq .client .test .functional .DurableOnTransient ;
22
20
import com .rabbitmq .client .test .functional .FunctionalTests ;
23
- import com .rabbitmq .client .test .functional .QosTests ;
24
21
import com .rabbitmq .tools .Host ;
25
22
import org .junit .Test ;
26
23
import org .junit .runner .RunWith ;
29
26
@ RunWith (RequiredPropertiesSuite .class )
30
27
@ Suite .SuiteClasses ({
31
28
HATests .SetUp .class ,
32
- // FunctionalTests.class,
33
- // ServerTests.class,
34
- ExclusiveQueueDurability .class ,
35
- DeadLetterExchange .class ,
29
+ FunctionalTests .class ,
30
+ ServerTests .class ,
36
31
HATests .TearDown .class
37
32
})
38
33
public class HATests {
You can’t perform that action at this time.
0 commit comments