summaryrefslogtreecommitdiff
path: root/Makefile
blob: 5d40fed6bb9457b90b7669434b26d811934ea3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
bootstrap:
	pip install -e "file://`pwd`#egg=raven[tests]"
	make setup-git

test: bootstrap lint
	@echo "Running Python tests"
	py.test -f tests
	@echo ""

lint:
	@echo "Linting Python files"
	PYFLAKES_NODOCTEST=1 flake8 raven || exit 1
	@echo ""

coverage:
	coverage run runtests.py --include=raven/* && \
	coverage html --omit=*/migrations/* -d cover

setup-git:
	git config branch.autosetuprebase always
	cd .git/hooks && ln -sf ../../hooks/* ./

publish:
	rm -rf dist build
	python setup.py sdist bdist_wheel upload

update-ca:
	curl -sSL https://mkcert.org/generate/ -o raven/data/cacert.pem

.PHONY: bootstrap test lint coverage setup-git publish update-ca