summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiro Mattia Gonano <ciromattia@gmail.com>2013-09-13 17:50:00 +0200
committerCiro Mattia Gonano <ciromattia@gmail.com>2013-09-13 17:50:00 +0200
commit10dc5b58800ff21e6106f161e4320296ef308405 (patch)
treeea641a137d32825e68025e52c8506239a90315e6
parente6e7312b1ea0e7b02d2b6c56d5fd14ea41232f80 (diff)
Add bootstrap for autoload
-rw-r--r--.travis.yml1
-rw-r--r--build.xml2
2 files changed, 1 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml
index f82da592..9b984e95 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -4,7 +4,6 @@ php:
- 5.3
before_script:
- - pear upgrade-all
- composer self-update
- composer install --prefer-source --dev
- export PATH=./bin/:$PATH
diff --git a/build.xml b/build.xml
index 3d6100d1..27144f87 100644
--- a/build.xml
+++ b/build.xml
@@ -255,7 +255,7 @@
<target name="test" description="Running unit tests">
<delete dir="${build.test.dir}"/>
<mkdir dir="${build.test.dir}"/>
- <phpunit codecoverage="false" haltonfailure="false" haltonerror="false" printsummary="true">
+ <phpunit codecoverage="false" haltonfailure="false" haltonerror="false" printsummary="true" bootstrap="./vendor/autoload.php">
<batchtest>
<fileset dir="tests/unit">
<include name="**/*Test.php"/>