fog/Makefile

18 lines
225 B
Makefile
Raw Normal View History

2018-04-26 15:40:12 +00:00
# Variables
SOURCE = fog
# Commands
2018-04-27 10:59:14 +00:00
all: lint test
2018-04-26 15:40:12 +00:00
2018-04-27 10:59:14 +00:00
test: unit
2018-04-26 15:40:12 +00:00
lint:
@echo Linting source code using pep8...
2018-04-27 10:59:14 +00:00
pycodestyle --ignore E501 $(SOURCE) test
@echo
unit:
@echo Running unit tests...
2018-04-27 12:12:42 +00:00
python -m pytest -s
2018-04-26 15:40:12 +00:00
@echo