This repo is an example walkthrough of a TDD excercise, String Calculator, taken from Kata Log.
- Create a virtual environment
- On Windows:
py -m venv env
- On MacOS/Linux:
python3 -m venv env
- On Windows:
- Activate the virtual env:
- On Windows:
.\env\Scripts\activate
(in Powershell) - On MacOS/Linux:
.env/Scripts/activate
- On Windows:
- Install the requirements:
pip install -r requirements
Simply run the following command: pytest -v
with the virtual environment activated.