+ 2
Can you do TDD with Python
I am writing a program that is going to scrape housing APIs and store the data in a Postgres database used by a website. One of the requirements is that I write tests to make sure that everything is working. Can I do something similar to what would be done in JavaScript using Jest? Also is there a testing package for python?
2 odpowiedzi
+ 2
Try the pytest module.
https://pypi.org/project/pytest/
+ 1
Thank you Simon Sauter