Skip to content

Commit ce71c24

Browse files
committed
[master] Add examples and modify readme
1 parent 0b0c0bf commit ce71c24

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ notification:
7171
|---------------|------------------------------------------------------------------------------------------------------------------|------------|----------|---------|
7272
| root | The root folder where your tests are. `testomatic` will watch into this folder and every subfolders recursively. | string | yes | *empty* |
7373
| regex | Every filename matching this regex will be watched. | string | yes | *empty* |
74+
| ignore | Fields or folder you want to ignore (vendor for example) | array | no | *empty* |
7475
| ignore_hidden | Any files or folders beginning by a point `.` won't be watched | boolean | no | `false` |
7576

7677
### command

examples/php/.testomatic_single.yml

+3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
watch:
33
root: src/Tests/
44
regex: "Test.php"
5+
ignore:
6+
- src/Tests/_cache
7+
- src/Tests/_fixtures
58
ignore_hidden: true
69
command:
710
bin: bin/phpunit

0 commit comments

Comments
 (0)