Merge lp:~cjohnston/summit/fix-local-test-stuff into lp:summit

Proposed by Chris Johnston
Status: Merged
Approved by: Chris Johnston
Approved revision: 541
Merged at revision: 541
Proposed branch: lp:~cjohnston/summit/fix-local-test-stuff
Merge into: lp:summit
Diff against target: 30 lines (+6/-6)
2 files modified
summit/common/management/commands/test_apps.py (+1/-1)
summit/local_tests.py (+5/-5)
To merge this branch: bzr merge lp:~cjohnston/summit/fix-local-test-stuff
Reviewer Review Type Date Requested Status
Joe Talbott Approve
Review via email: mp+163179@code.launchpad.net

Commit message

Fixes issues with running local tests

To post a comment you must log in.
Revision history for this message
Joe Talbott (joetalbott) wrote :

Looks good.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'summit/common/management/commands/test_apps.py'
2--- summit/common/management/commands/test_apps.py 2013-03-31 13:03:03 +0000
3+++ summit/common/management/commands/test_apps.py 2013-05-09 16:31:24 +0000
4@@ -1,7 +1,7 @@
5 from django.core.management import call_command
6 from django.core.management.base import BaseCommand
7
8-from settings import LOCAL_APS
9+from settings import LOCAL_APPS
10
11
12 class Command(BaseCommand):
13
14=== modified file 'summit/local_tests.py'
15--- summit/local_tests.py 2013-03-31 13:03:03 +0000
16+++ summit/local_tests.py 2013-05-09 16:31:24 +0000
17@@ -8,8 +8,8 @@
18 if not test_labels:
19 test_labels = LOCAL_APPS
20
21- return super(LocalAppsTestSuiteRunner, self).run_tests(
22- test_labels,
23- *args,
24- **kwargs
25- )
26+ return super(LocalAppsTestSuiteRunner, self).run_tests(
27+ test_labels,
28+ *args,
29+ **kwargs
30+ )

Subscribers

People subscribed via source and target branches