-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathphpunit.xml
More file actions
28 lines (28 loc) · 1.03 KB
/
phpunit.xml
File metadata and controls
28 lines (28 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="bootstrap.php"
colors="true"
stopOnFailure="false">
<testsuites>
<!--
Blueprints tests are slow so we'll run them last.
There's no need to hold up the prior test results.
-->
<testsuite name="Project Test Suite">
<directory>components/*/Tests</directory>
<exclude>components/Blueprints/Tests</exclude>
</testsuite>
<testsuite name="Blueprints Test Suite">
<directory>components/Blueprints/Tests</directory>
</testsuite>
<!--
Push MD E2E suite — drives a real WordPress instance over
HTTP with the real `git` CLI. Skipped unless the
PUSH_MD_E2E_* env vars are set, so it is opt-in for local
runs and only the CI workflow at
.github/workflows/push-md-e2e.yml exercises it.
-->
<testsuite name="Push MD E2E">
<directory>plugins/push-md/Tests</directory>
</testsuite>
</testsuites>
</phpunit>