Skip to content

Latest commit

 

History

History
37 lines (26 loc) · 785 Bytes

README.md

File metadata and controls

37 lines (26 loc) · 785 Bytes

my answers in Python Python CI

This project builds with Poetry.

Setup:

curl -sSL https://install.python-poetry.org | python3 -
poetry install

Run the test suite:

poetry run pytest

Run the benchmarks:

poetry run pytest --benchmark-enable

Print solutions for the inputs provided in local data files:

poetry run aoc2023

Lint and format code with Black, pylint, and isort:

poetry run black .
poetry run isort .
poetry run pylint aoc2023