mirror of
https://github.com/rjNemo/mars-rover-kata
synced 2026-06-06 02:36:48 +00:00
11 lines
No EOL
205 B
Makefile
11 lines
No EOL
205 B
Makefile
run:
|
|
pipenv run python -m rover.main
|
|
test: tests
|
|
tests:
|
|
pipenv run pytest -v --cov=. --cov-report=html
|
|
lint:
|
|
pipenv run black -l 99 .
|
|
pipenv run flake8 .
|
|
pipenv run mypy .
|
|
|
|
.PHONY: run test tests lint |