Files
mathgenerator/Makefile
D-T-666 a9c4249273 whitespace
2020-10-19 23:19:11 +04:00

12 lines
226 B
Makefile

IGNORE_ERRORS = E501,F401,F403,F405
PKG = mathgenerator
format:
python -m autopep8 --ignore=$(IGNORE_ERRORS) -ir $(PKG)/*
lint:
python -m flake8 --ignore=$(IGNORE_ERRORS) $(PKG)
test:
python -m pytest --verbose -s tests