我第一次关注PHPUnit教程,我的测试在本地运行良好。但是,在Travis CI上运行我的测试时,没有执行任何测试,我的构建以0退出。
我可以在repo上看到我的目录结构和完整代码。
从Travis CI (Full build log)
构建日志1.51s$ curl -s http://getcomposer.org/installer | php
#!/usr/bin/env php
All settings correct for using Composer
Downloading...
Composer successfully installed to: /home/travis/build/idavidmcdonald/phpunit-tutorial/composer.phar
Use it: php composer.phar
before_script.2
0.33s$ php composer.phar install
Loading composer repositories with package information
Installing dependencies (including require-dev) from lock file
Nothing to install or update
Generating autoload files
0.08s$ vendor/bin/phpunit --debug
PHPUnit 3.7.14 by Sebastian Bergmann.
Configuration read from /home/travis/build/idavidmcdonald/phpunit-tutorial/phpunit.xml
Time: 13 ms, Memory: 2.00Mb
No tests executed!
The command "vendor/bin/phpunit --debug" exited with 0.
Done. Your build exited with 0.
phpunit.xml:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="Application Test Suite">
<directory>phpunittutorial/tests/</directory>
</testsuite>
</testsuites>
</phpunit>
.travis.yml:
language: php
php:
- 5.4
- 5.5
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install
script: vendor/bin/phpunit --debug
我的测试在本地成功运行,但是我的phpunit.xml文件可能存在问题吗?
答案 0 :(得分:3)
包含测试的目录不正确。
正确的路径是phpUnitTutorial/tests
。请注意,Windows不关心区分大小写,但世界上其他所有人都关心。最好的办法是始终使用小写的路径,或者仔细检查你到处使用正确的大小写(PSR-0和PSR-4需要路径名称与类名相同的情况,通常包括大写字母)。
顺便说一句:您应该升级到更新版本的PHPUnit。那个旧的3.7系列现在已经多年没有获得任何更新了,而向4.x的过渡并不是太陡峭 - 你应该这样做。
答案 1 :(得分:0)
language: php
php:
- 5.4
- 5.5
install: composer install
script: ./vendor/bin/phpunit
不确定install: composer install
,可能会被省略