Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Reword - How Does Avocado Handle Sets of Tags

...

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:

  1. pr,ior - All tests tagged with both pr and ior

  2. pr ior - All tests tagged with pr, plus all tests tagged with ior

  3. pr,ior pr,mdtest - All tests tagged with both pr and ior, plus all tests tagged with both pr and mdtest

Avocado uses a hyphen to mean “not”. For example:

  1. pr,-ior - All tests tagged with pr but not ior

  2. pr,-ior,-mdtest - All tests tagged with pr but not ior or mdtest

How Do I Use Test Tags in a PR?

...