aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 17c708ea07aa1e83070681965ef1c23e540dd9e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
develop:
	pip install "file://`pwd`#egg=pykss[tests]"
	pip install -e . --use-mirrors

lint:
	@echo "Linting Python files"
	flake8 --ignore=E501,E225,E121,E123,E124,E125,E127,E128 pykss
	@echo ""

install-test-requirements:
	pip install "file://`pwd`#egg=pykss[tests]"

test-python:
	@echo "Running Python tests"
	python setup.py -q test || exit 1
	@echo ""

test: install-test-requirements lint test-python