forked from DevinVinson/WordPress-Plugin-Boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 8
/
codeception.dist.yml
42 lines (42 loc) · 1.05 KB
/
codeception.dist.yml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
paths:
tests: tests
output: tests/_output
data: tests/_data
support: tests/_support
envs: tests/_envs
actor_suffix: Tester
extensions:
enabled:
- Codeception\Extension\RunFailed
commands:
- Codeception\Command\GenerateWPUnit
- Codeception\Command\GenerateWPRestApi
- Codeception\Command\GenerateWPRestController
- Codeception\Command\GenerateWPRestPostTypeController
- Codeception\Command\GenerateWPAjax
- Codeception\Command\GenerateWPCanonical
- Codeception\Command\GenerateWPXMLRPC
params:
- .env.testing
coverage:
enabled: true
include:
- /src/*
- /plugin-slug.php
- /uninstall.php
- /templates/*
exclude:
- /vendor/*
- /dist-archive/*
- /tests/*
- /scratch/*
- /wordpress/*
- /vendor-prefixed/*
- /*/interface-*.*
- /*/index.php
- /*/*.txt
- autoload.php
- autoload-classmap.php
- /*/*.css
- /*/*.js
bootstrap: bootstrap.php