dockerized-pytest-course icon indicating copy to clipboard operation
dockerized-pytest-course copied to clipboard

LinkedIn Learning course covering Python Unit Test with Pytest, Docker, and TDD principles

Results 8 dockerized-pytest-course issues
Sort by recently updated
recently updated
newest added

Since fixtures are not explained until chapter 3, we can remove this from the code to not distract learners and improve continuity.

I've been following the LinkedIN video course: "Python Unit Testing with Pytest" and ran into a problem configuring the docker container while running "docker-compose run test sh" which is at...

## Chapter 3 Video 3 **Title:** Parametrization **Description**: The code in the video did not show how to update the test function's signature after implementing parametrization. **Example** FROM ``` def...

'''test-requirements.txt''' √ › pytest==6.2.5 » Issue: ``` bash (.venv) dragancajic@ubuntu:~/Devs/pytest-and-docker$ pytest TypeError: required field "lineno" missing from alias ``` » Solution: :checkered_flag: ✔️ Pytest issues >> TypeError: required field "lineno"...

There were a number of changes required to make this work with a newer version of Python. I've made these changes and tested with 3.10 and newer. Changes are: -...