Commands to run and test the code, also used as pre-merge checks.
The basic functionality can be executing by running the following test:
python test_game.py
Using flake8 linting to check code format.
flake8 . --count --show-source --statistics
Run all tests.
pytest
Coverage reports can be generated with xml or html output:
pytest --cov --cov-report=html .
pytest --cov --cov-report=xml .