~jjo/charms/trusty/heat/fix-heat_conf-encryption_key-and-auth_uri-lp1368645-lp1368621

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: yolanda.robla at canonical
  • Date: 2013-11-29 10:02:56 UTC
  • Revision ID: yolanda.robla@canonical.com-20131129100256-17upb6ctjfeel9gj
added unit tests

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
#!/usr/bin/make
2
2
 
3
3
lint:
 
4
        @echo -n "Running flake8 tests: "
4
5
        @flake8 --exclude hooks/charmhelpers hooks
 
6
        @flake8 unit_tests
 
7
        @echo "OK"
 
8
        @echo -n "Running charm proof: "
5
9
        @charm proof
 
10
        @echo "OK"
6
11
 
7
12
sync:
8
 
        @charm-helper-sync -c charm-helpers-sync.yaml
 
13
        @charm-helper-sync -c charm-helpers.yaml
 
14
 
 
15
test:
 
16
        @$(PYTHON) /usr/bin/nosetests --nologcapture --with-coverage  unit_tests
 
17
 
 
18
all: test lint