From cc4642b2939e461b4e87ad8358e31753fc46fd4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20DECOOL?= Date: Wed, 15 Apr 2015 13:46:38 +0200 Subject: [PATCH 1/3] Fix travis configuration file --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d9f4433..caae402 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,8 +8,9 @@ before_script: - Xvfb $DISPLAY -extension RANDR &> /dev/null & - curl http://selenium-release.storage.googleapis.com/2.45/selenium-server-standalone-2.45.0.jar > selenium.jar - java -jar selenium.jar &> /dev/null & - - php -S localhost:8080 -t fixtures/ &> /dev/null & + - php -S localhost:8000 -t fixtures/ &> /dev/null & - cp behat.yml{-dist,} + - composer selfupdate - composer install script: From 1640d282a8255f0729868cebb6676e6f40395149 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20DECOOL?= Date: Wed, 15 Apr 2015 13:46:51 +0200 Subject: [PATCH 2/3] Add Travis status in README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 1460778..14bdc5f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ Behat Common Contexts ===================== +[![Build Status](https://travis-ci.org/novaway/BehatCommonContext.svg)](https://travis-ci.org/novaway/BehatCommonContext) + # /!\ This extension is under development. Behat3 is not actually supported. /!\ Provide most common behat tests. From c4fd221a62be38e3c362358267a3fb88a0460621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20DECOOL?= Date: Wed, 15 Apr 2015 13:50:56 +0200 Subject: [PATCH 3/3] Add PHP versions --- .travis.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.travis.yml b/.travis.yml index caae402..f10504f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,13 @@ language: php php: - 5.4 + - 5.5 + - 5.6 + - 7.0 + +matrix: + allow_failures: + - php: 7.0 before_script: - export DISPLAY=:99.0