~thedac/charmsupport/volume-management

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Matthew Wedgwood
  • Date: 2013-02-08 17:50:45 UTC
  • mfrom: (29.1.4 automated-tests)
  • Revision ID: matthew.wedgwood@canonical.com-20130208175045-yqajv7u7ydedt6t9
[diogobaeder] Preparing for automated tests and code syntax checks (pyflakes and pep8)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
userinstall:
29
29
        scripts/update-revno
30
30
        python setup.py install --user
 
31
 
 
32
test:
 
33
        nosetests tests/
 
34
 
 
35
lint:
 
36
        pyflakes $(PROJECT)
 
37
        pep8 $(PROJECT)
 
38
 
 
39
build: test lint