/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

Add some more format tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
        $(SETUP) clean
24
24
        rm -f *.so
25
25
 
26
 
check:: build-inplace 
27
 
        BZR_PLUGINS_AT=git@$(shell pwd) $(DEBUGGER) $(PYTHON) $(PYTHON_OPTIONS) $(BZR) $(BZR_OPTIONS) selftest $(TEST_OPTIONS) $(TESTS)
 
26
TMP_PLUGINS_DIR = $(shell pwd)/.plugins
 
27
 
 
28
$(TMP_PLUGINS_DIR):
 
29
        mkdir -p $@
 
30
 
 
31
$(TMP_PLUGINS_DIR)/git: $(TMP_PLUGINS_DIR)
 
32
        ln -sf .. $@
 
33
 
 
34
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)
28
36
 
29
37
check-verbose::
30
38
        $(MAKE) check TEST_OPTIONS=-v
36
44
        $(MAKE) check TEST_OPTIONS="--random=now --verbose --one"
37
45
 
38
46
show-plugins::
39
 
        BZR_PLUGINS_AT=git@$(shell pwd) $(BZR) plugins -v
 
47
        BZR_PLUGIN_PATH=$(TMP_PLUGINS_DIR) BZR_PLUGINS_AT=git@$(shell pwd) $(BZR) plugins -v
40
48
 
41
49
lint::
42
50
        $(PYLINT) -f parseable *.py */*.py