如何在Travis-Ci中配置CakePHP

时间:2016-08-10 12:41:45

标签: php cakephp travis-ci cakephp-2.3

我有一个CakePHP项目,我还集成了Travis-CI来开始自动化测试。 现在我的测试看起来像这样:

<?php 
    App::uses('CustomControllerTest', 'Lib');
    class AllocationsControllerTest extends CustomControllerTest
{...

我的travis.yml:

language: php
php:
  - '5.3'

before_script:
  - composer install
  - php bootstrap.php

script:
  phpunit --configuration phpunit.xml --coverage-text

bootsrap.php目前为空。

当触发Travis时,它说没有找到Class'App'。 我需要添加什么来添加.travis.ymlbootstrap.php,以便它加载测试类中所需的所有依赖项?

0 个答案:

没有答案