forked from buildbot/buildbot
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
33 lines (24 loc) · 700 Bytes
/
Makefile
File metadata and controls
33 lines (24 loc) · 700 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
31
32
33
# developer utilities
.PHONY: docs apidocs pylint
docs:
$(MAKE) -C master/docs
apidocs:
$(MAKE) -C apidocs
pylint:
$(MAKE) -C master pylint; master_res=$$?; \
$(MAKE) -C slave pylint; slave_res=$$?; \
if [ $$master_res != 0 ] || [ $$slave_res != 0 ]; then exit 1; fi
pyflakes:
pyflakes master/buildbot slave/buildslave
pep8:
pep8 --config=common/pep8rc master/buildbot slave/buildslave www/*/buildbot_*/ www/*/setup.py
frontend:
pip install -e pkg
pip install mock
for i in www/*/; do pip install -e $$i ; done
frontend_install_tests:
pip install -e pkg
pip install mock wheel
trial pkg/test_buildbot_pkg.py
rmpyc:
find . \( -name '*.pyc' -o -name '*.pyo' \) -exec rm -v {} \;