Simple powerful no-boilerplate testing with Python.
I would like to have a list of all the tests that have failed to be used at the end …
python unit-testing testing pytest xdistThe baseline of all my tests is that there will always be a taxi with at least one passenger in …
python pytest fixturesFor an application I'm testing I'd like to create an autouse=True fixture which monkeypatches smtplib.SMTP.connect to fail …
python fixtures pytestWhile using py.test, I have some tests that run fine with SQLite but hang silently when I switch to …
sqlite postgresql timeout freeze pytestI have an API that returns this JSON response { "message": "Staff name and password pair not match", "errors": { "resource": "Login", "…
python json pytest object-comparisonWith pytest, one can mark tests using a decorator @pytest.mark.slow def some_slow_test(): pass Then, from the …
python pytestI ran a sample code from this thread. How to properly use coverage.py in Python? However, when I executed …
pytest coverage.pyI have PyTest setup in vs-code but none of the tests are being found even though running pytest from the …
python python-3.x visual-studio-code pytest pytest-djangoIs there some way to speed up the repeated execution of pytest? It seems to spend a lot of time …
python performance pytest