Add Travis and move phpunit.xml to phpunit.xml.dist
This commit is contained in:
parent
b2ad26acca
commit
991240a3e8
|
|
@ -0,0 +1,11 @@
|
|||
language: php
|
||||
php:
|
||||
- "5.5"
|
||||
- "5.4"
|
||||
|
||||
before_script:
|
||||
- composer selfupdate
|
||||
- composer install --prefer-source
|
||||
|
||||
script:
|
||||
- vendor/bin/phpunit
|
||||
|
|
@ -1,5 +1,15 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<phpunit colors="true">
|
||||
<phpunit
|
||||
bootstrap="vendor/autoload.php"
|
||||
colors="true"
|
||||
convertErrorsToExceptions="true"
|
||||
convertNoticesToExceptions="true"
|
||||
convertWarningsToExceptions="true"
|
||||
processIsolation="false"
|
||||
stopOnFailure="false"
|
||||
syntaxCheck="false"
|
||||
verbose="true"
|
||||
>
|
||||
<testsuites>
|
||||
<testsuite name="WellRESTed Test Suite">
|
||||
<directory>./test/</directory>
|
||||
Loading…
Reference in New Issue