/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to Makefile

Fix branch cloning.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
DEBUGGER ?= 
2
 
BZR_OPTIONS ?= 
3
2
BZR ?= $(shell which bzr)
4
3
PYTHON ?= $(shell which python)
5
4
SETUP ?= ./setup.py
7
6
CTAGS ?= ctags
8
7
PYLINT ?= pylint
9
8
RST2HTML ?= rst2html
10
 
TESTS ?= -s bp.git
 
9
TESTS ?= 
11
10
 
12
11
all:: build 
13
12
 
32
31
        ln -sf .. $@
33
32
 
34
33
check:: build-inplace $(TMP_PLUGINS_DIR)/git
35
 
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(DEBUGGER) $(PYTHON) $(PYTHON_OPTIONS) $(BZR) $(BZR_OPTIONS) selftest $(TEST_OPTIONS) $(TESTS)
 
34
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(DEBUGGER) $(PYTHON) $(PYTHON_OPTIONS) $(BZR) selftest $(TEST_OPTIONS) --starting-with=bzrlib.plugins.git $(TESTS)
36
35
 
37
36
check-verbose::
38
37
        $(MAKE) check TEST_OPTIONS=-v
44
43
        $(MAKE) check TEST_OPTIONS="--random=now --verbose --one"
45
44
 
46
45
show-plugins::
47
 
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) BZR_PLUGINS_AT=git@$(shell pwd) $(BZR) plugins -v
 
46
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) $(BZR) plugins
48
47
 
49
48
lint::
50
49
        $(PYLINT) -f parseable *.py */*.py
53
52
        $(CTAGS) -R .
54
53
 
55
54
ctags:: tags
56
 
 
57
 
coverage::
58
 
        $(MAKE) check BZR_OPTIONS="--coverage coverage"