This repository has been archived by the owner on Mar 28, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
57 lines (44 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
SERVER_CONFIG = config/readinglist.ini
VIRTUALENV = virtualenv
SPHINX_BUILDDIR = docs/_build
VENV := $(shell echo $${VIRTUAL_ENV-.venv})
PYTHON = $(VENV)/bin/python
DEV_STAMP = $(VENV)/.dev_env_installed.stamp
INSTALL_STAMP = $(VENV)/.install.stamp
.IGNORE: clean
.PHONY: all install virtualenv tests
OBJECTS = .venv .coverage
all: install
install: $(INSTALL_STAMP)
$(INSTALL_STAMP): $(PYTHON) setup.py
$(VENV)/bin/pip install --process-dependency-links -U -e .
touch $(INSTALL_STAMP)
install-dev: install $(DEV_STAMP)
$(DEV_STAMP): $(PYTHON) dev-requirements.txt
$(VENV)/bin/pip install -r dev-requirements.txt
touch $(DEV_STAMP)
virtualenv: $(PYTHON)
$(PYTHON):
virtualenv $(VENV)
$(VENV)/bin/pip install --upgrade pip
serve: install-dev
$(VENV)/bin/cliquet --ini $(SERVER_CONFIG) migrate
$(VENV)/bin/pserve $(SERVER_CONFIG) --reload
tests-once: install-dev
$(VENV)/bin/nosetests -s --with-mocha-reporter --cover-min-percentage=100 --with-coverage --cover-package=readinglist
tests:
tox
clean:
find . -name '*.pyc' -delete
find . -name '__pycache__' -type d -exec rm -fr {} \;
loadtest-check: install
$(VENV)/bin/cliquet --ini loadtests/server.ini migrate > readinglist.log &&\
$(VENV)/bin/pserve loadtests/server.ini > readinglist.log & PID=$$! && \
rm readinglist.log || cat readinglist.log; \
sleep 1 && cd loadtests && \
make test SERVER_URL=http://127.0.0.1:8000; \
EXIT_CODE=$$?; kill $$PID; exit $$EXIT_CODE
docs: install-dev
$(VENV)/bin/sphinx-build -b html -d $(SPHINX_BUILDDIR)/doctrees docs $(SPHINX_BUILDDIR)/html
@echo
@echo "Build finished. The HTML pages are in $(SPHINX_BUILDDIR)/html/index.html"