We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed9fdbb commit 0fc98ebCopy full SHA for 0fc98eb
README.md
@@ -108,6 +108,16 @@ require("neotest-phpunit")({
108
})
109
```
110
111
+If there are projects you don't want discovered, you can instead set `root_ignore_files` to ignore any matching projects.
112
+
113
+For example, if your project uses Pest and the appropriate [neotest adapter](https://github.com/V13Axel/neotest-pest), you'll need to set:
114
115
+```lua
116
+require("neotest-phpunit")({
117
+ root_ignore_files = { "tests/Pest.php" }
118
+})
119
+```
120
121
### Filtering directories
122
123
By default, the adapter will search test files in all dirs in the root with the exception of `node_modules` and `.git`. You can change this with:
0 commit comments