-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adjust logger output and fix whitespace.
example: "ERROR armstrong.core.arm_layout--backend error text" is more conclusive than "ERROR basic--backend error text". Since anything could be logging, it's better to know the logger name.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
try: | ||
from django.test.runner import DiscoverRunner | ||
from django.test.runner import DiscoverRunner | ||
except ImportError: # < Django 1.6 | ||
from .utils.runner import DiscoverRunner | ||
from .utils.runner import DiscoverRunner | ||
|
||
|
||
class ArmstrongDiscoverRunner(DiscoverRunner): | ||
def __init__(self, *args, **kwargs): | ||
"""Find our "tests" package, not just "test*.py" files""" | ||
"""Find our "tests" package, not just "test*.py" files""" | ||
|
||
super(ArmstrongDiscoverRunner, self).__init__(*args, **kwargs) | ||
self.pattern = "test*" |