Skip to content

Latest commit

 

History

History
23 lines (16 loc) · 435 Bytes

README.md

File metadata and controls

23 lines (16 loc) · 435 Bytes

Advent of Code 2022

Project was setup using venv and Python version 3.11.0

Running the code

# Run all days
(venv) advent-of-code-2022 % python run.py

# Run a specific day
(venv) advent-of-code-2022 % python run.py <day_number>

Running the tests

# Install deps
(venv) advent-of-code-2022 % pip install -r requirements.txt

# Run pytest as a module
(venv) advent-of-code-2022 % python -m pytest