~cbjchen/charms/trusty/heat/heat-ha-rebased

« back to all changes in this revision

Viewing changes to Makefile

[beisner,r=corey.bryant] Add Amulet test dependencies and clean up Makefile.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
PYTHON := /usr/bin/env python
3
3
 
4
4
lint:
5
 
        @echo Lint inspections and charm proof...
6
 
        @flake8 --exclude hooks/charmhelpers hooks tests unit_tests
 
5
        @flake8 --exclude hooks/charmhelpers,tests/charmhelpers \
 
6
        actions hooks unit_tests tests
7
7
        @charm proof
8
8
 
9
9
test:
10
10
        @# Bundletester expects unit tests here.
11
 
        @$(PYTHON) /usr/bin/nosetests --nologcapture --with-coverage unit_tests
 
11
        @$(PYTHON) /usr/bin/nosetests -v --nologcapture --with-coverage unit_tests
12
12
 
13
13
functional_test:
14
14
        @echo Starting all functional, lint and unit tests...
23
23
        @$(PYTHON) bin/charm_helpers_sync.py -c charm-helpers-hooks.yaml
24
24
        @$(PYTHON) bin/charm_helpers_sync.py -c charm-helpers-tests.yaml
25
25
 
26
 
publish: lint unit_test
 
26
publish: lint test
27
27
        bzr push lp:charms/heat
28
28
        bzr push lp:charms/trusty/heat