phpunit-github.xml
20 lines
| 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <phpunit bootstrap="tests/bootstrap.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="false" stopOnFailure="true"> |
| 3 | <testsuites> |
| 4 | <testsuite name="Embera Test Suite"> |
| 5 | <directory>tests/Embera/</directory> |
| 6 | </testsuite> |
| 7 | </testsuites> |
| 8 | |
| 9 | <filter> |
| 10 | <whitelist> |
| 11 | <directory suffix=".php">src/Embera/</directory> |
| 12 | </whitelist> |
| 13 | </filter> |
| 14 | |
| 15 | <php> |
| 16 | <ini name="date.timezone" value="UTC"/> |
| 17 | <const name="GITHUBTESTS" value="1"/> |
| 18 | </php> |
| 19 | </phpunit> |
| 20 |