Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ef1c02b

Browse files
committed
Update docs
1 parent dc0b4a6 commit ef1c02b

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

docs/userguide/running-unit-tests.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,13 @@ or
440440
select * from table(ut.run(a_tags => '(api|fast)&!complex&!test1'));
441441
```
442442

443-
The above call will execute all suites/contexts/tests that are marked with any of tags `api` or `fast` except those suites/contexts/tests that are marked as `complex` and except those suites/contexts/tests that are marked as `test1`.
443+
which is equivalent of exclusion on whole expression
444+
445+
```sql linenums="1"
446+
select * from table(ut.run(a_tags => '(api|fast)&!(complex|test1)'));
447+
```
448+
449+
The above calls will execute all suites/contexts/tests that are marked with any of tags `api` or `fast` except those suites/contexts/tests that are marked as `complex` and except those suites/contexts/tests that are marked as `test1`.
444450
Given the above example package `ut_sample_test`, only `ut_sample_test.ut_test` will be executed.
445451

446452

0 commit comments

Comments
 (0)