Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 557 Bytes

File metadata and controls

29 lines (20 loc) · 557 Bytes

Fizz Buzz Kata - Python

Using TDD and Approval Tests (Golden Master) to solve

Running it

Getting started - Local python

This project uses uv for Python package and virtual environment management.

To set up the project:

# Install uv (if not already installed)
# See https://docs.astral.sh/uv/getting-started/installation/

# uv will automatically create a virtual environment and install dependencies
uv sync
make test

Getting started - Docker

make up
make bash
# development
make down