This blog is about integrating a testing framework into my ResumeEnhancer CLI tool. I have been working on ResumeEnhancer for a while now and adding test cases is beneficial as projects grow. I had few options to choose from like pytest, nose, unittest. I decided to go with pytest because it is a commonly used testing framework and it is best for me to learn such widely used framework.
Setting up pytest is very stright forward, install pytest by running this command pip install pytest
and pytest is ready to use.
Source link
lol