ff0ee580b8
dev-basic-cosmic-rocky stays due to: https://bugs.launchpad.net/charm-lxd/+bug/1801349<Paste> Change-Id: I4d00957e8092b1fefc71e337237aefb38b292914 Related-Bug: #1801349
21 lines
432 B
Makefile
21 lines
432 B
Makefile
#!/usr/bin/make
|
|
PYTHON := /usr/bin/env python
|
|
|
|
lint:
|
|
@tox -e pep8
|
|
|
|
test:
|
|
tox -e py27
|
|
|
|
bin/charm_helpers_sync.py:
|
|
@mkdir -p bin
|
|
@curl -o bin/charm_helpers_sync.py https://raw.githubusercontent.com/juju/charm-helpers/master/tools/charm_helpers_sync/charm_helpers_sync.py
|
|
|
|
|
|
sync: bin/charm_helpers_sync.py
|
|
@$(PYTHON) bin/charm_helpers_sync.py -c charm-helpers.yaml
|
|
|
|
functional_test:
|
|
@echo Starting Amulet tests...
|
|
tox -e func27
|