Add AWSI automation tests to a new test suite and pipe (#3913)

Signed-off-by: junbo <junbo@amazon.com>
This commit is contained in:
Junbo Liang
2021-09-07 13:02:13 -07:00
committed by GitHub
parent 2a2847b15d
commit 8edcc504bd
13 changed files with 51 additions and 19 deletions
@@ -266,7 +266,8 @@ namespace TestImpact
{
{ SuiteTypeAsString(SuiteType::Main), SuiteType::Main },
{ SuiteTypeAsString(SuiteType::Periodic), SuiteType::Periodic },
{ SuiteTypeAsString(SuiteType::Sandbox), SuiteType::Sandbox }
{ SuiteTypeAsString(SuiteType::Sandbox), SuiteType::Sandbox },
{ SuiteTypeAsString(SuiteType::AWSI), SuiteType::AWSI }
};
return ParseMultiStateOption(OptionKeys[SuiteFilterKey], states, cmd).value_or(SuiteType::Main);
@@ -472,7 +473,7 @@ namespace TestImpact
" available, no prioritization will occur).\n"
" -maxconcurrency=<number> The maximum number of concurrent test targets/shards to be in flight at \n"
" any given moment.\n"
" -suite=<main, periodic, sandbox> The test suite to select from for this test sequence.";
" -suite=<main, periodic, sandbox, awsi> The test suite to select from for this test sequence.";
return help;
}