Increased project structure

This commit is contained in:
Lukas Wölfer
2019-04-10 02:02:58 +02:00
parent 44f47f4691
commit 92e2f7f4a1
10 changed files with 166 additions and 103 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
PROJECTNAME=shenzhen_solitaire
.PHONY: test coverage typing linting
test:
python -m unittest discover
coverage:
coverage run -m unittest discover && coverage report --skip-covered
typing:
mypy --strict ${PROJECTNAME} test
linting:
pylint ${PROJECTNAME} test