Skip to content

Commit 1f79136

Browse files
committed
Add explanation on how to filter unit tests
1 parent f557c42 commit 1f79136

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

DEV.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,14 @@ The Scala CLI sources ship with Mill launchers, so that Mill itself doesn't need
2020
#### Run unit tests
2121

2222
```bash
23-
./mill 'build-module.test' './mill 'build-module.test'
23+
./mill 'build-module.test'
24+
```
25+
26+
To can filter unit test suites:
27+
28+
```bash
29+
./mill 'build-module.test' 'scala.build.tests.BuildTestsScalac.*'
30+
./mill 'build-module.test' 'scala.build.tests.BuildTestsScalac.simple'
2431
```
2532

2633
#### Run integration tests with the JVM launcher

0 commit comments

Comments
 (0)