forked from getsentry/raven-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
30 lines (23 loc) · 663 Bytes
/
Makefile
File metadata and controls
30 lines (23 loc) · 663 Bytes
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 -x 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