Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
0f23ed9b
Unverified
Commit
0f23ed9b
authored
Apr 12, 2018
by
Sergei Morozov
Committed by
GitHub
Apr 12, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3099 from morozov/phpunit-configuration
Consistent PHPUnit configuration across environments
parents
deed41ae
5a0ca2f5
Changes
14
Show whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
118 additions
and
10 deletions
+118
-10
phpunit.xml.dist
phpunit.xml.dist
+7
-0
mssql.sql2008r2sp2.sqlsrv.appveyor.xml
tests/appveyor/mssql.sql2008r2sp2.sqlsrv.appveyor.xml
+11
-2
mssql.sql2012sp1.sqlsrv.appveyor.xml
tests/appveyor/mssql.sql2012sp1.sqlsrv.appveyor.xml
+11
-2
mssql.sql2017.pdo_sqlsrv.appveyor.xml
tests/appveyor/mssql.sql2017.pdo_sqlsrv.appveyor.xml
+11
-2
mssql.sql2017.sqlsrv.appveyor.xml
tests/appveyor/mssql.sql2017.sqlsrv.appveyor.xml
+11
-2
oci8.phpunit.continuousphp.xml
tests/continuousphp/oci8.phpunit.continuousphp.xml
+7
-0
mariadb.mysqli.travis.xml
tests/travis/mariadb.mysqli.travis.xml
+11
-2
mariadb.travis.xml
tests/travis/mariadb.travis.xml
+7
-0
mysql.travis.xml
tests/travis/mysql.travis.xml
+7
-0
mysqli.travis.xml
tests/travis/mysqli.travis.xml
+7
-0
pdo_sqlsrv.travis.xml
tests/travis/pdo_sqlsrv.travis.xml
+7
-0
pgsql.travis.xml
tests/travis/pgsql.travis.xml
+7
-0
sqlite.travis.xml
tests/travis/sqlite.travis.xml
+7
-0
sqlsrv.travis.xml
tests/travis/sqlsrv.travis.xml
+7
-0
No files found.
phpunit.xml.dist
View file @
0f23ed9b
...
@@ -17,6 +17,7 @@
...
@@ -17,6 +17,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -51,6 +52,12 @@
...
@@ -51,6 +52,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Doctrine\Tests\DbalPerformanceTestListener"
/>
<listener
class=
"Doctrine\Tests\DbalPerformanceTestListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
...
...
tests/appveyor/mssql.sql2008r2sp2.sqlsrv.appveyor.xml
View file @
0f23ed9b
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"http://schema.phpunit.de/4.8/phpunit.xsd"
xsi:noNamespaceSchemaLocation=
"../../vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals=
"false"
colors=
"true"
colors=
"true"
bootstrap=
"../../vendor/autoload.php"
bootstrap=
"../../vendor/autoload.php"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -28,6 +31,12 @@
...
@@ -28,6 +31,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/appveyor/mssql.sql2012sp1.sqlsrv.appveyor.xml
View file @
0f23ed9b
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"http://schema.phpunit.de/4.8/phpunit.xsd"
xsi:noNamespaceSchemaLocation=
"../../vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals=
"false"
colors=
"true"
colors=
"true"
bootstrap=
"../../vendor/autoload.php"
bootstrap=
"../../vendor/autoload.php"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -28,6 +31,12 @@
...
@@ -28,6 +31,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/appveyor/mssql.sql2017.pdo_sqlsrv.appveyor.xml
View file @
0f23ed9b
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"http://schema.phpunit.de/4.8/phpunit.xsd"
xsi:noNamespaceSchemaLocation=
"../../vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals=
"false"
colors=
"true"
colors=
"true"
bootstrap=
"../../vendor/autoload.php"
bootstrap=
"../../vendor/autoload.php"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -28,6 +31,12 @@
...
@@ -28,6 +31,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/appveyor/mssql.sql2017.sqlsrv.appveyor.xml
View file @
0f23ed9b
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"http://schema.phpunit.de/4.8/phpunit.xsd"
xsi:noNamespaceSchemaLocation=
"../../vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals=
"false"
colors=
"true"
colors=
"true"
bootstrap=
"../../vendor/autoload.php"
bootstrap=
"../../vendor/autoload.php"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -28,6 +31,12 @@
...
@@ -28,6 +31,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/continuousphp/oci8.phpunit.continuousphp.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -31,6 +32,12 @@
...
@@ -31,6 +32,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/mariadb.mysqli.travis.xml
View file @
0f23ed9b
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation=
"http://schema.phpunit.de/4.8/phpunit.xsd"
xsi:noNamespaceSchemaLocation=
"../../vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals=
"false"
colors=
"true"
colors=
"true"
bootstrap=
"../../vendor/autoload.php"
bootstrap=
"../../vendor/autoload.php"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -28,6 +31,12 @@
...
@@ -28,6 +31,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/mariadb.travis.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -29,6 +30,12 @@
...
@@ -29,6 +30,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/mysql.travis.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -29,6 +30,12 @@
...
@@ -29,6 +30,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/mysqli.travis.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -29,6 +30,12 @@
...
@@ -29,6 +30,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/pdo_sqlsrv.travis.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -29,6 +30,12 @@
...
@@ -29,6 +30,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/pgsql.travis.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -29,6 +30,12 @@
...
@@ -29,6 +30,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/sqlite.travis.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -16,6 +17,12 @@
...
@@ -16,6 +17,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
tests/travis/sqlsrv.travis.xml
View file @
0f23ed9b
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
beStrictAboutOutputDuringTests=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
beStrictAboutTodoAnnotatedTests=
"true"
failOnRisky=
"true"
failOnRisky=
"true"
failOnWarning=
"true"
>
>
<php>
<php>
<ini
name=
"error_reporting"
value=
"-1"
/>
<ini
name=
"error_reporting"
value=
"-1"
/>
...
@@ -29,6 +30,12 @@
...
@@ -29,6 +30,12 @@
</testsuite>
</testsuite>
</testsuites>
</testsuites>
<filter>
<whitelist>
<directory
suffix=
".php"
>
../../lib/Doctrine
</directory>
</whitelist>
</filter>
<listeners>
<listeners>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
<listener
class=
"Symfony\Bridge\PhpUnit\SymfonyTestsListener"
/>
</listeners>
</listeners>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment