-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
43 lines (34 loc) · 891 Bytes
/
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
HUMILIS := .env/bin/humilis
PIP := .env/bin/pip
PYTHON := .env/bin/python
TOX := .env/bin/tox
STAGE := DEV
HUMILIS_ENV := tests/integration/firehose-rsc
# create virtual environment
.env:
virtualenv .env -p python3
# install dev dependencies, create layers directory
develop: .env
.env/bin/pip install -r requirements-dev.txt
# run unit tests
test: .env
$(PIP) install tox
$(TOX) -e unit
# remove .tox and .env dirs
clean:
rm -rf .env .tox
# deploy the test environment
create: develop
$(HUMILIS) create --stage $(STAGE) $(HUMILIS_ENV).yaml
# configure humilis
configure: develop
$(HUMILIS) configure --local
# update the test deployment
update: develop
$(HUMILIS) update --stage $(STAGE) $(HUMILIS_ENV).yaml
# delete the test deployment
delete: develop
$(HUMILIS) delete --stage $(STAGE) $(HUMILIS_ENV).yaml
# upload to Pypi
pypi: develop
$(PYTHON) setup.py sdist upload