compass.run.serial.run_tests

compass.run.serial.run_tests(suite_name, quiet=False, is_test_case=False, steps_to_run=None, steps_not_to_run=None)[source]

Run the given test suite or test case

Parameters
  • suite_name (str) – The name of the test suite

  • quiet (bool, optional) – Whether step names are not included in the output as the test suite progresses

  • is_test_case (bool) – Whether this is a test case instead of a full test suite

  • steps_to_run (list of str, optional) – A list of the steps to run if this is a test case, not a full suite. The default behavior is to run the default steps unless they are in steps_not_to_run

  • steps_not_to_run (list of str, optional) – A list of steps not to run if this is a test case, not a full suite. Typically, these are steps to remove from the defaults