File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed
src/Symfony/Component/Messenger/Tests/Transport/AmqpExt Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 16
16
17
17
services :
18
18
redis :
19
- image : redis
19
+ image : redis:6.0.0
20
20
ports :
21
21
- 6379:6379
22
22
redis-cluster :
36
36
image : memcached:1.6.5
37
37
ports :
38
38
- 11211:11211
39
+ rabbitmq :
40
+ image : rabbitmq:3.8.3
41
+ ports :
42
+ - 5672:5672
39
43
40
44
steps :
41
45
- name : Checkout
69
73
70
74
- name : Install Symfony Flex
71
75
run : composer global require --no-progress --no-scripts --no-plugins symfony/flex dev-master
72
- if : matrix.php != 5.5 && matrix.php != 5.6
73
76
74
77
- name : Install dependencies
75
78
run : |
83
86
REDIS_HOST : localhost
84
87
REDIS_CLUSTER_HOSTS : ' localhost:7000 localhost:7001 localhost:7002 localhost:7003 localhost:7004 localhost:7005'
85
88
MESSENGER_REDIS_DSN : redis://127.0.0.1:7006/messages
89
+ MESSENGER_AMQP_DSN : amqp://localhost/%2f/messages
86
90
MEMCACHED_HOST : localhost
Original file line number Diff line number Diff line change @@ -13,14 +13,11 @@ addons:
13
13
- slapd
14
14
- zookeeperd
15
15
- libzookeeper-mt-dev
16
- - rabbitmq-server
17
16
18
17
env :
19
18
global :
20
19
- MIN_PHP=7.1.3
21
20
- SYMFONY_PROCESS_PHP_TEST_BINARY=~/.phpenv/shims/php
22
- - MESSENGER_AMQP_DSN=amqp://localhost/%2f/messages
23
- - MESSENGER_REDIS_DSN=redis://127.0.0.1:7006/messages
24
21
- SYMFONY_PHPUNIT_DISABLE_RESULT_CACHE=1
25
22
26
23
matrix :
40
37
- ~/php-ext
41
38
42
39
services :
43
- - rabbitmq
44
40
- docker
45
41
46
42
before_install :
Original file line number Diff line number Diff line change 33
33
34
34
/**
35
35
* @requires extension amqp
36
+ * @group integration
36
37
*/
37
38
class AmqpExtIntegrationTest extends TestCase
38
39
{
You can’t perform that action at this time.
0 commit comments