Run black linter and enforce going forward

This commit is contained in:
Asher Foa 2019-10-26 18:47:45 -07:00
commit c820395dbf
5 changed files with 11 additions and 5 deletions

View file

@ -14,12 +14,16 @@ init:
lint:
flake8 moto
black --check moto/ tests/
test: lint
test-only:
rm -f .coverage
rm -rf cover
@nosetests -sv --with-coverage --cover-html ./tests/ $(TEST_EXCLUDE)
test: lint test-only
test_server:
@TEST_SERVER_MODE=true nosetests -sv --with-coverage --cover-html ./tests/