Allow passing args to BaseTest.setup_class() via cmd line
At the moment, the only way to get custom args into the BaseTest appear to be setting TestParams in the config file, or hacking them in with global vars.
It would be nice if custom args specified via command line or generated in the parent script could be passed into the test_runner.main() call and from there into BaseTest.setup_class() (and/or any other ways of getting args into BaseTest that come to mind).
This can be done today already.
If you are calling TestRunner APIs directly in your own suite, you can already do this by adding more logic in argparse block in your own suite.
In this particular issue, we will track implementing this for the default entry point of test_runner.main.