test()
Run the specified test suite.
Usage
test(suite="unit")Parameters
suite: str = "unit"-
The name of the test suite to run, by default “unit”.
Returns
dict-
A dictionary containing test results with passed and failed counts.
Examples
>>> test("integration")
{'suite': 'integration', 'passed': 10, 'failed': 0}