Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 451 Bytes

README.md

File metadata and controls

16 lines (9 loc) · 451 Bytes

Python Test Project

Algorithms/practice problem statements worked as tdd way

To run all the unit tests with unittest framework -- This will run all tests written with unittest

python -m unittest

To run all the unit tests with pytest framework -- This will run all tests (both unittest and pytest tests)

pytest

To get the test coverage in each module

pytest --cov=algorithms tests

pytest --cov=miscelleneous tests