~bbaqar/charms/trusty/plumgrid-gateway/opsvm

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
#!/usr/bin/make
PYTHON := /usr/bin/env python

virtualenv:
	virtualenv .venv
	.venv/bin/pip install flake8 nose coverage mock pyyaml netifaces \
        netaddr jinja2

lint: virtualenv
	.venv/bin/flake8 --exclude hooks/charmhelpers hooks unit_tests tests --ignore E402
	@charm proof

unit_test: virtualenv
	@echo Starting tests...
	@.venv/bin/nosetests --nologcapture  --with-coverage unit_tests

bin/charm_helpers_sync.py:
	@mkdir -p bin
	@bzr cat lp:charm-helpers/tools/charm_helpers_sync/charm_helpers_sync.py \
        > bin/charm_helpers_sync.py

sync: bin/charm_helpers_sync.py
	@$(PYTHON) bin/charm_helpers_sync.py -c charm-helpers-sync.yaml

publish: lint unit_test
	bzr push lp:charms/plumgrid-gateway
	bzr push lp:charms/trusty/plumgrid-gateway

test:
	@echo Starting Amulet tests...
	@juju test -v -p AMULET_HTTP_PROXY,AMULET_OS_VIP --timeout 2700