Locked learning resources

Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

Locked learning resources

This lesson is for members only. Join us and get access to thousands of tutorials and a community of expert Pythonistas.

Unlock This Lesson

TDD Recap & Review

This is the last video of the course and provides you a summary of what you have learned during this course.

Resources

Avatar image for ronaldoafonso

ronaldoafonso on April 25, 2021

I had some issues with the file/dir layout suggested. So I had do copy the “test_stack.py” one directory up in the directory tree in order to follow along with the tutorual. Something like:

(venv-3.8.5) rafonso@ronaldoafonso-pc:~/Python/data_structure$ tree
.
├── datastructure
   ├── __init__.py
   └── stack.py
└── test_stack.py

1 directory, 3 files

I’m using a virtual environment that I created this way:

python -m venv venv-3.8.5
Avatar image for Glenn Lehman

Glenn Lehman on Sept. 29, 2021

Nice introduction to this subject.

Avatar image for artemudovyk

artemudovyk on April 11, 2022

Yeah, very nice course. Loved instructor’s diction and voice. Thanks! :)

Avatar image for dylanrose

dylanrose on April 27, 2022

In the (conda) environment I created to work along with this tutorial, running “python -m pytest -v –cov” didn’t work – I had to also install pytest-cov as well. After I did so, this command ran as intended.

Avatar image for itayregev

itayregev on May 16, 2022

Thank you

Avatar image for Mohamed Awnallah

Mohamed Awnallah on June 17, 2022

The course is good and informative based on hands-on experience. I like it but It will be awesome if there is more videos regards coverage metrics (code coverage and test coverage) as well as their pros and cons.

Avatar image for Szabi Keresztes

Szabi Keresztes on Aug. 23, 2022

Great, calm video series. Thanks a lot!

I kinda wanted to see how to test that an exception was thrown by the system under test. If the author or anybody has good resources on the topic I would appreciate.

Avatar image for D Ben

D Ben on Feb. 27, 2023

Thank you! Simple and effective explanation on using pytest.

Avatar image for WhirleyRascal

WhirleyRascal on March 11, 2023

Before this course I didn’t know what a fixture was. Fixtures are really useful. Now I much prefer pytest to unittest.

Avatar image for Jimben

Jimben on Jan. 11, 2024

I really enjoyed the shortness and concise the examples were nothing over the top crazy, or hard to understand. They got straight to the point, and this short introduction makes me excited to learn more about PyTest!

Become a Member to join the conversation.