Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupal
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
drupal
Commits
8220c915
Unverified
Commit
8220c915
authored
3 years ago
by
Alex Pott
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3222004
by mondrake, longwave: phpunit.xml is using a deprecated schema
parent
5592a5a5
Branches
Branches containing commit
Tags
Tags containing commit
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/phpunit.xml.dist
+17
-18
17 additions, 18 deletions
core/phpunit.xml.dist
with
17 additions
and
18 deletions
core/phpunit.xml.dist
+
17
−
18
View file @
8220c915
...
...
@@ -6,13 +6,15 @@
or your current system user. See core/tests/README.md and
https://www.drupal.org/node/2116263 for details.
-->
<phpunit
bootstrap=
"tests/bootstrap.php"
colors=
"true"
<phpunit
xmlns:xsi=
"http://www.w3.org/2001/XMLSchema-instance"
bootstrap=
"tests/bootstrap.php"
colors=
"true"
beStrictAboutTestsThatDoNotTestAnything=
"true"
beStrictAboutOutputDuringTests=
"true"
beStrictAboutChangesToGlobalState=
"true"
failOnWarning=
"true"
printerClass=
"\Drupal\Tests\Listeners\HtmlOutputPrinter"
cacheResult=
"false"
>
cacheResult=
"false"
xsi:noNamespaceSchemaLocation=
"https://schema.phpunit.de/9.3/phpunit.xsd"
>
<php>
<!-- Set error reporting to E_ALL. -->
<ini
name=
"error_reporting"
value=
"32767"
/>
...
...
@@ -59,25 +61,22 @@
<listener
class=
"\Drupal\Tests\Listeners\DrupalListener"
>
</listener>
</listeners>
<!--
Filter
for coverage reports. -->
<
filter
>
<
whitelist
>
<!--
Settings
for coverage reports. -->
<
coverage
>
<
include
>
<directory>
./includes
</directory>
<directory>
./lib
</directory>
<!-- Extensions can have their own test directories, so exclude those. -->
<directory>
./modules
</directory>
<exclude>
<directory>
./modules/*/src/Tests
</directory>
<directory>
./modules/*/tests
</directory>
</exclude>
<directory>
../modules
</directory>
<exclude>
<directory>
../modules/*/src/Tests
</directory>
<directory>
../modules/*/tests
</directory>
<directory>
../modules/*/*/src/Tests
</directory>
<directory>
../modules/*/*/tests
</directory>
</exclude>
<directory>
../sites
</directory>
</whitelist>
</filter>
</include>
<exclude>
<directory>
./modules/*/src/Tests
</directory>
<directory>
./modules/*/tests
</directory>
<directory>
../modules/*/src/Tests
</directory>
<directory>
../modules/*/tests
</directory>
<directory>
../modules/*/*/src/Tests
</directory>
<directory>
../modules/*/*/tests
</directory>
</exclude>
</coverage>
</phpunit>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment