Skip to content

Commit

Permalink
+ ignore import * MnogoByte#17
Browse files Browse the repository at this point in the history
  • Loading branch information
meteozond committed Apr 3, 2015
1 parent d1dd6f1 commit ce7ed7a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions django_permanent/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
from django.utils.module_loading import import_by_path

from django_permanent import settings
from .deletion import *
from .related import *
from .deletion import * # NOQA
from .related import * # NOQA
from .query import NonDeletedQuerySet, DeletedQuerySet, PermanentQuerySet
from .managers import QuerySetManager

Expand Down
2 changes: 1 addition & 1 deletion django_permanent/tests/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
from .cases import *
from .cases import * # NOQA
2 changes: 1 addition & 1 deletion runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def runtests(*test_args):
parent = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, parent)
from django.test.runner import DiscoverRunner
failures = DiscoverRunner(verbosity=1, interactive=True, failfast=False).run_tests(test_args)
failures = DiscoverRunner(verbosity=1, interactive=True, failfast=True).run_tests(test_args)
sys.exit(failures)

if __name__ == '__main__':
Expand Down

0 comments on commit ce7ed7a

Please sign in to comment.