You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sometimes there might be an error with too many open files when generating coverage. To fix this, you can increase the `ulimit`, for example:
81
+
82
+
```
83
+
ulimit -n 4000
84
+
```
85
+
86
+
Coverage will be available in `coverage/index.html`.
87
+
88
+
#### Behat
89
+
90
+
The command to launch Behat tests is:
91
+
92
+
```
93
+
./vendor/bin/behat --stop-on-failure -vvv
94
+
```
95
+
96
+
You may need to clear the cache manually before running behat tests because of the temporary sql database. To do so, just remove the `test` cache directory:
0 commit comments