Skip to content

Latest commit

 

History

History
34 lines (26 loc) · 775 Bytes

README.md

File metadata and controls

34 lines (26 loc) · 775 Bytes

Stadium

Build Status codecov

Run and Test

Commands to run and test the code, also used as pre-merge checks.

Run

The basic functionality can be executing by running the following test:

python test_game.py

Check

Using flake8 linting to check code format.

flake8 . --count --show-source --statistics

Test

Run all tests.

pytest

Code coverage

Coverage reports can be generated with xml or html output:

pytest --cov --cov-report=html .
pytest --cov --cov-report=xml .