...
How Does Avocado Handle Sets of Tags?
Avocado uses a space to represent “and”, a comma to represent “or”, and a hyphen to represent “not”commas and spaces to specify sets of tests. For example:
pr,ior
- All tests tagged with bothpr
andior
pr ior
- All tests tagged withpr
, plus all tests tagged withior
pr,ior pr,mdtest
- All tests tagged with bothpr
andior
, plus all tests tagged with bothpr
andmdtest
Avocado uses a hyphen to mean “not”. For example:
pr,-ior
- All tests tagged withpr
but notior
pr,-ior,-mdtest
- All tests tagged withpr
but notior
ormdtest
How Do I Use Test Tags in a PR?
...