forked from plone/plone.restapi
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMakefile
More file actions
36 lines (26 loc) · 704 Bytes
/
Makefile
File metadata and controls
36 lines (26 loc) · 704 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
34
35
36
# convenience makefile to boostrap & run buildout
version = 2.7
all: .installed.cfg
bin/test
.installed.cfg: bin/buildout *.cfg
bin/buildout
bin/buildout: bin/pip
bin/pip install --upgrade pip
bin/pip install -r requirements.txt
@touch -c $@
build-plone-5.2: .installed.cfg
bin/pip install --upgrade pip
bin/pip install -r requirements.txt
bin/buildout -c plone-5.2.x.cfg
build-py3:
virtualenv --python=python3 .
bin/pip install --upgrade pip
bin/pip install -r requirements.txt
bin/buildout -c plone-5.2.x.cfg
bin/python bin/pip:
virtualenv --clear --python=python$(version) .
test-performance:
jmeter -n -t performance.jmx -l jmeter.jtl
clean:
git clean -Xdf
.PHONY: all clean