/advent-of-code-2020

Puzzle solving @ https://adventofcode.com/2020

Primary LanguagePython

🎄

Puzzle solving @ Advent of Code

Running

Installing dependencies (needed for pre-commit checks and running tests)

pip install -r requirements-dev.txt

Testing

Test files exist alongside their corresponding puzzle solution, with the naming convention of test_{day}.py (ie: test_01.py, etc.)

Run full test suite with:

pytest

Run a particular puzzle's tests with:

pytest calendar/{day}
# Eg: `pytest calendar/01`