python-telegram-bot/Makefile

18 lines
322 B
Makefile
Raw Normal View History

2015-07-07 22:19:26 +02:00
help:
@echo " clean remove unwanted stuff"
@echo " lint check style with flake8"
@echo " test run tests"
clean:
rm -fr build
rm -fr dist
find . -name '*.pyc' -exec rm -f {} \;
find . -name '*.pyo' -exec rm -f {} \;
find . -name '*~' -exec rm -f {} \;
lint:
flake8 telegram
test:
python telegram_test.py