Please make it possible to pass excludeAnnotations to monkeyc from launch.json. For example:
{
"type": "monkeyc",
"request": "launch",
"name": "Run App +FOO-BAR",
"stopAtLaunch": false,
"device": "${command:GetTargetDevice}",
"excludeAnnotations": ["foo", "no_bar"]
}
The idea is that when we develop an app with certain features and we want to test some combinations of them without having to edit the monkey.jungle all the time.
One specific issue I am having is that there's no :no_test annotation, which makes it hard to do lot of things (when we want a different version of a function in tests and in real code)