Filter PIO Unit Testing tests using a new test_filter option in "platformio.ini" or platformio test –filter command // Resolve #934

This commit is contained in:
Ivan Kravets
2017-06-24 18:40:30 +03:00
parent 8f4c09a600
commit 0c06982d75
4 changed files with 22 additions and 6 deletions

View File

@@ -134,10 +134,11 @@ class EnvironmentProcessor(object):
"debug_extra_cmds", "debug_server", "debug_init_break",
"debug_load_cmd")
IGNORE_BUILD_OPTIONS = ("test_transport", "test_ignore", "test_port",
"debug_tool", "debug_port", "debug_init_cmds",
"debug_extra_cmds", "debug_server",
"debug_init_break", "debug_load_cmd")
IGNORE_BUILD_OPTIONS = ("test_transport", "test_filter", "test_ignore",
"test_port", "debug_tool", "debug_port",
"debug_init_cmds", "debug_extra_cmds",
"debug_server", "debug_init_break",
"debug_load_cmd")
REMAPED_OPTIONS = {"framework": "pioframework", "platform": "pioplatform"}