mirror of
https://github.com/doctrine/mongodb-maker-bundle.git
synced 2026-03-23 22:42:07 +01:00
* Setup test * Draft implementation of make:document command * doctrine/mongodb-odm-bundle has now an official recipe * Add tests to MongoDBHelper * Update attribute namespace for ODM v2.16 * Fix tests * Require version 1.x from symfony/maker-bundle, as it exist in my fork and in the symfony repo * Add symfony/phpunit-bridge because it's symlinked in test environment 'https://github.com/symfony/maker-bundle/pull/480#pullrequestreview-304282682' * Add mongodb-atlas-local container to tests * Add PHP 8.5 polyfill
27 lines
827 B
XML
27 lines
827 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
|
|
bootstrap="tests/bootstrap.php"
|
|
colors="true"
|
|
failOnAllIssues="true"
|
|
displayDetailsOnAllIssues="true"
|
|
>
|
|
<php>
|
|
<ini name="error_reporting" value="-1" />
|
|
<env name="MONGODB_URI" value="mongodb://localhost:27017" />
|
|
</php>
|
|
|
|
<testsuites>
|
|
<testsuite name="Doctrine MongoDB Maker Bundle Test Suite">
|
|
<directory>./tests/</directory>
|
|
<exclude>./tests/tmp</exclude>
|
|
</testsuite>
|
|
</testsuites>
|
|
|
|
<source ignoreSuppressionOfDeprecations="true">
|
|
<include>
|
|
<directory>./src/</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|