Skip to content

Commit 9a3fbb7

Browse files
committed
Merge branch 'performance'
2 parents c0a1dc6 + f3284c1 commit 9a3fbb7

File tree

8 files changed

+1071
-106
lines changed

8 files changed

+1071
-106
lines changed

Makefile

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
PYTHON = python
2+
SETUP = $(PYTHON) setup.py
3+
TESTRUNNER = $(shell which nosetests)
4+
TESTFLAGS =
5+
6+
all: build
7+
8+
doc::
9+
make -C doc/ html
10+
11+
build::
12+
$(SETUP) build
13+
$(SETUP) build_ext -i
14+
15+
build_ext::
16+
$(SETUP) build_ext -i
17+
18+
install::
19+
$(SETUP) install
20+
21+
clean::
22+
$(SETUP) clean --all
23+
rm -f *.so
24+
25+
coverage:: build
26+
PYTHONPATH=. $(PYTHON) $(TESTRUNNER) --cover-package=dulwich --with-coverage --cover-erase --cover-inclusive gitdb
27+

0 commit comments

Comments
 (0)