~jcsackett/charmworld/bac-tag-constraints

« back to all changes in this revision

Viewing changes to Makefile

  • Committer: Aaron Bentley
  • Date: 2013-08-05 20:16:49 UTC
  • mto: (328.2.6 separate-qa)
  • mto: This revision was merged to the branch mainline in revision 335.
  • Revision ID: aaron@canonical.com-20130805201649-34zevaqku6g0i9zt
Move migrations into charmworld.

Show diffs side-by-side

added added

removed removed

Lines of Context:
91
91
# ###################
92
92
 
93
93
test: test.ini $(INI) bin/nosetests
94
 
        $(NOSE) charmworld migrations
 
94
        $(NOSE) charmworld
95
95
 
96
96
testid: test.ini bin/nosetests
97
97
        # Run specific nose id tests.
98
98
        # To set up the index you must run `make testid` once to completion to
99
99
        # setup the index.  Then you can run a group of tests like:
100
100
        # Call with `ID="3 5" make testid`
101
 
        $(NOSE) -v -s -x --with-id $(ID) charmworld migrations
 
101
        $(NOSE) -v -s -x --with-id $(ID) charmworld
102
102
 
103
103
testdebug: test.ini bin/nosetests
104
 
        $(NOSE) --with-id --pdb --pdb-failures charmworld migrations
 
104
        $(NOSE) --with-id --pdb --pdb-failures charmworld
105
105
 
106
106
check: clear_ini clean sysdeps install testid
107
107