-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
47 lines (34 loc) · 1.22 KB
/
Makefile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# convenience makefile to boostrap & run buildout
# use `make options=-v` to run buildout with extra options
python = python2.7
options = -c travis.cfg
all: docs tests
coverage: htmlcov/index.html
htmlcov/index.html: README.rst src/brasil.gov.agenda/*.py bin/coverage
@bin/coverage run --source=./src/brasil.gov.agenda/ --branch bin/test
@bin/coverage html -i
@touch $@
@echo "Coverage report was generated at '$@'."
docs: docs/html/index.html
docs/html/index.html: docs/*.rst src/brasil.gov.agenda/*.py src/brasil.gov.agenda/browser/*.py src/brasil.gov.agenda/tests/*.py bin/sphinx-build
bin/sphinx-build docs docs/html
@touch $@
@echo "Documentation was generated at '$@'."
bin/sphinx-build: .installed.cfg
@touch $@
.installed.cfg: bin/buildout buildout.cfg setup.py
@mkdir -p buildout-cache/downloads
bin/buildout $(options)
bin/buildout: bin/python buildout.cfg bootstrap.py
bin/python bootstrap.py -d
@touch $@
bin/python:
virtualenv -p $(python) --no-site-packages .
@touch $@
tests: .installed.cfg
@bin/test
@bin/code-analysis
clean:
@rm -rf .coverage .installed.cfg .mr.developer.cfg bin docs/html htmlcov parts develop-eggs \
src/brasil.gov.agenda.egg-info lib include .Python
.PHONY: all docs tests clean