Functions | |
def | make_basename |
Helper that creates a unified basename out of the test index and the test file path. More... | |
def | make_tests |
Helper that creates the list of tests execute. More... | |
Variables | |
tuple | _logger |
def etr.tools.tests.make_basename | ( | index, | |
test_file_path | |||
) |
Helper that creates a unified basename out of the test index and the test file path.
make_basename(0, 'src/test.robot')
'00_test'
def etr.tools.tests.make_tests | ( | tests | ) |
Helper that creates the list of tests execute.
Additionally, it implements standard features that should be valid across any test runner plugin. These are:
Returns an ordered list (that may be shuffled) of tuples where each tuple contains the original sequence and the test filename, e.g.:
[(12, 'src/some_test.robot'), (1, 'src/other_test.robot'), ...]
etr.tools.tests._logger |