Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a7456e2 + 279cc5e commit b7b16fcCopy full SHA for b7b16fc
.travis.yml
@@ -5,8 +5,11 @@ php:
5
- 5.4
6
- 5.5
7
- 5.6
8
-services: redis-server
9
before_install: phpize
10
install: ./configure --prefix=/usr && sudo make install
11
-before_script: echo 'extension = redis.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
12
-script: php tests/TestRedis.php
+before_script:
+ - for PORT in 6379 6380 6381 6382; do /usr/bin/redis-server --port $PORT --daemonize yes; done
+ - echo 'extension = redis.so' >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini
13
+script:
14
+ - php tests/TestRedis.php --class Redis
15
+ - php tests/TestRedis.php --class RedisArray
0 commit comments