Advent Of Code 2019
Dependencies
python3 -m venv venv/
source venv/bin/activate
pip install -r requirements.txt
Running a solution
python3 dayXX/main.py
Testing
Test all solutions:
pytest
Test a specific solution:
cd dayXX/
pytest
or
pytest dayXX/
Issues
If pytest
is not working, try python3 -m pytest
or deactivate && source venv/bin/activate
and run pytest
again.