aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 4f447db6cc468db0f762fd5e9f509231b4d4c974 (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=sentry[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