Object Oriented Programming Example with Tests
cd
into the project directory (lions-OOP-example)
Create a virtual environment named venv
for this project:
$ python3 -m venv venv
Activate this environment:
$ source venv/bin/activate
Install pytest:
pip install pytest
Run pytest command:
pytest