TestComplete command line options - specify multiple individual tests
Scenario: At times, when executing our entire test suite, several tests fail and need to be re-executed. The tests may be spread across multiple script files in the project.
Request: The ability to run multiple individual tests via the command line, similar to other test runners such as pytest.
Example of pytest syntax (line breaks added for clarity "^"):
python -m pytest ^
tests/test_unit_name1.py::routine_name1 ^
tests/test_unit_name3.py::routine_name6 ^
tests/test_unit_name2.py::routine_name3
Example of what TestComplete/TestExecute syntax might look like:
TestExecute.exe file_name /run ^
/project:project_name1 /unit:unit_name1 /routine:routine_name1 ^
/project:project_name1 /unit:unit_name3 /routine:routine_name6 ^
/project:project_name1 /unit:unit_name2 /routine:routine_name3