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: docs/development.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -253,7 +253,7 @@ workshops workshops
253
253
$ git config --add oh-my-zsh.hide-dirty 1
254
254
```
255
255
256
-
- Some shells (e.g., [Zsh][zsh]) may require quotes around environment variables to prevent the shell from expanding paths. If this is the case, wrap paths in quotes. For example, replace
256
+
- Some shells (e.g., [Zsh][zsh]) may require quotes around environment variables to prevent the shell from expanding paths. If this is the case, wrap paths, or values which may be interpreted as paths, in quotes. For example, replace
257
257
258
258
<!-- run-disable -->
259
259
@@ -289,15 +289,15 @@ To run select tests,
289
289
<!-- run-disable -->
290
290
291
291
```bash
292
-
$ make TESTS_FILTER=.*/<pattern>/.* test
292
+
$ make TESTS_FILTER=".*/<pattern>/.*" test
293
293
```
294
294
295
295
where `<pattern>` is a pattern matching a particular path. For example, to test only base special math functions
296
296
297
297
<!-- run-disable -->
298
298
299
299
```bash
300
-
$ make TESTS_FILTER=.*/math/base/special/.* test
300
+
$ make TESTS_FILTER=".*/math/base/special/.*" test
301
301
```
302
302
303
303
where the pattern `.*/math/base/special/.*` matches any test file whose absolute path contains `math/base/special`.
@@ -307,7 +307,7 @@ To generate a test coverage report,
307
307
<!-- run-disable -->
308
308
309
309
```bash
310
-
$ make TESTS_FILTER=.*/<pattern>/.* test-cov
310
+
$ make TESTS_FILTER=".*/<pattern>/.*" test-cov
311
311
$ make view-cov
312
312
```
313
313
@@ -316,8 +316,8 @@ If you are developing a tool (i.e., code located in the `tools` directory), to r
316
316
<!-- run-disable -->
317
317
318
318
```bash
319
-
$ make TESTS_FILTER=.*/<pattern>/.* tools-test
320
-
$ make TESTS_FILTER=.*/<pattern>/.* tools-test-cov
319
+
$ make TESTS_FILTER=".*/<pattern>/.*" tools-test
320
+
$ make TESTS_FILTER=".*/<pattern>/.*" tools-test-cov
321
321
$ make view-cov
322
322
```
323
323
@@ -326,15 +326,15 @@ Similarly, to run benchmarks
326
326
<!-- run-disable -->
327
327
328
328
```bash
329
-
$ make BENCHMARKS_FILTER=.*/<pattern>/.* benchmark
329
+
$ make BENCHMARKS_FILTER=".*/<pattern>/.*" benchmark
0 commit comments