Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run phpunit through composer instead #7

Open
wants to merge 3 commits into
base: trunk
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
language: php
install:
- pear install package.xml
- travis_retry composer install --no-interaction --prefer-source
php:
- 5.4
sudo: false
script: phpunit tests/

script:
- composer test
13 changes: 7 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}
"pear/pear_exception": "*",
"phpunit/phpunit": "~4.8.16"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Mixed whitespace

},
"scripts": {
"test": "phpunit"
}
}
18 changes: 18 additions & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
processIsolation = "false"
stopOnFailure = "false"
stopOnError = "false"
stopOnIncomplete="false"
stopOnSkipped="false"
>

<testsuites>
<testsuite name="File_Ogg Test Suite">
<directory>tests/</directory>
</testsuite>
</testsuites>

</phpunit>