Skip to content

Latest commit

 

History

History

py

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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 aoc2022

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

poetry run black .
poetry run isort .
poetry run pylint aoc2022