diff options
author | Phil Sturgeon <me@philsturgeon.com> | 2021-11-17 18:33:37 +0100 |
---|---|---|
committer | Phil Sturgeon <me@philsturgeon.com> | 2021-11-17 18:34:33 +0100 |
commit | 298b06e5d823370a49dd49661cc8cc08f9a51ead (patch) | |
tree | ea41060d3f5f4ae6972ca53470b7ad8c40bd5057 /tests/travis | |
parent | 47c6b45f524f826e56aff8e77bf289bcbfa1b51d (diff) |
chore: update to phpunit 9
Diffstat (limited to 'tests/travis')
-rw-r--r-- | tests/travis/sqlite.phpunit.xml | 35 |
1 files changed, 18 insertions, 17 deletions
diff --git a/tests/travis/sqlite.phpunit.xml b/tests/travis/sqlite.phpunit.xml index 0c4da0d1b..4eaafc19f 100644 --- a/tests/travis/sqlite.phpunit.xml +++ b/tests/travis/sqlite.phpunit.xml @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> - -<phpunit +<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="../Bootstrap.php" colors="true" convertNoticesToExceptions="true" @@ -9,18 +8,20 @@ stopOnFailure="false" stopOnIncomplete="false" stopOnSkipped="false" - beStrictAboutTestsThatDoNotTestAnything="false"> - <php> - <const name="DB_DRIVER" value="sqlite"/> - </php> - <testsuites> - <testsuite name="CodeIgniter Core Test Suite"> - <directory suffix="test.php">../codeigniter</directory> - </testsuite> - </testsuites> - <filter> - <whitelist addUncoveredFilesFromWhitelist="false"> - <directory suffix=".php">../../system</directory> - </whitelist> - </filter> -</phpunit>
\ No newline at end of file + beStrictAboutTestsThatDoNotTestAnything="false" + xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd" +> + <coverage includeUncoveredFiles="false"> + <include> + <directory suffix=".php">../../system</directory> + </include> + </coverage> + <php> + <const name="DB_DRIVER" value="sqlite"/> + </php> + <testsuites> + <testsuite name="CodeIgniter Core Test Suite"> + <directory suffix="test.php">../codeigniter</directory> + </testsuite> + </testsuites> +</phpunit> |