Simple Pytest Example

This is the code for my video tutorial for getting started with Pytest.

Install Pytest

pip install pytest

Run the tests

pytest

Run a specific file

pytest test_shopping_cart.py

Run a specific test

pytest test_shopping_cart.py::test_can_get_total_price