From 0439948b965ec96506382cfbd11cc05da882b90e Mon Sep 17 00:00:00 2001 From: Gilles Taupenas Date: Mon, 9 Nov 2015 17:30:41 +0100 Subject: [PATCH 1/2] test --- .gitignore | 1 + .travis.yml | 12 ++++++++++++ 2 files changed, 13 insertions(+) create mode 100644 .travis.yml diff --git a/.gitignore b/.gitignore index 94a6a25288..8d549d7633 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +.idea vendor/ composer.lock phpunit.xml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000000..15645403bc --- /dev/null +++ b/.travis.yml @@ -0,0 +1,12 @@ +language: php +php: + - 5.5 + - 5.6 + - hhvm + +before_install: + - composer self-update + +install: composer update --prefer-source + +script: phpunit --coverage-text \ No newline at end of file From a0296949a074c1b63b65c7c9693bc12fcb94f183 Mon Sep 17 00:00:00 2001 From: Gilles Taupenas Date: Mon, 9 Nov 2015 17:34:46 +0100 Subject: [PATCH 2/2] remove coverage for test --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 15645403bc..7459532d4a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,4 +9,4 @@ before_install: install: composer update --prefer-source -script: phpunit --coverage-text \ No newline at end of file +script: phpunit \ No newline at end of file