Skip to content
This repository has been archived by the owner on Jan 1, 2023. It is now read-only.

Commit

Permalink
Simplified the phpunit config and ignored the composer files
Browse files Browse the repository at this point in the history
  • Loading branch information
stof committed Sep 14, 2012
1 parent ca999f5 commit 64345e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 12 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
phpunit.xml
phpunit.xml
vendor
composer.lock
13 changes: 2 additions & 11 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>

<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="./vendor/autoload.php"
>
<phpunit colors="true" bootstrap="./vendor/autoload.php">
<testsuites>
<testsuite name="AsseticBundle Test Suite">
<directory>./Tests/</directory>
Expand All @@ -23,6 +13,7 @@
<exclude>
<directory>./Resources</directory>
<directory>./Tests</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>
Expand Down

0 comments on commit 64345e8

Please sign in to comment.