From 3d84201d7429b8a58ea21832afcb05483b5c8745 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Fri, 25 Apr 2014 00:01:20 +0300 Subject: [PATCH] Run composer install in Travis CI before tests Tests are using the Composer autoloader since: https://github.com/erusev/parsedown/commit/cd1c030362351d6006f0c2cbe52b7fbd65ca9ef8 Because of that Composer should have actually dumped the autoloader in the `vendor/` folder, before the tests are ran. --- .travis.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.travis.yml b/.travis.yml index ebe4d30..3c8b661 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,3 +7,6 @@ php: - 5.3 - 5.2 - hhvm + +before_install: composer self-update +install: composer install