mirror of
https://github.com/DeaDvey/mathgenerator.git
synced 2025-11-28 06:25:23 +01:00
12 lines
226 B
Makefile
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
|