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
Copy file name to clipboardExpand all lines: REFERENCE.md
+8
Original file line number
Diff line number
Diff line change
@@ -112,8 +112,16 @@ For your unit tests, in addition to setting specific libraries and platforms, yo
112
112
113
113
Filtering your unit tests may help speed up targeted testing locally, but it is intended primarily as a means to temporarily disable tests between individual commits.
114
114
115
+
Furthermore, you can filter the files that will be included in the compilation step by specifying `exclude_dirs`. All cpp and header files in those directories will not be included in the compilation step, before the unittests are run.
116
+
115
117
```yaml
116
118
unittest:
119
+
120
+
# Exclude these directories from compilation
121
+
exclude_dirs:
122
+
- someDirectory
123
+
- someOtherDirectory
124
+
117
125
# Perform unit tests with these compilers (these are the binaries that will be called via the shell)
0 commit comments