Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 495 Bytes

unittesting.md

File metadata and controls

15 lines (11 loc) · 495 Bytes

Unit Tests

The unit tests for this package can be found in the tests folder and are written using PyTest.

Required coverage rate

We require a minimum coverage rate of 95%

How to run

Requires: pytest Requires: pytest-cov

In the root of the project, run the following command:

pytest --cov=uitestcore --cov-fail-under=95 --cov-report term-missing --junitxml='reports/junit/unit-tests.xml'