Skip to content

Commit

Permalink
Removed nose testrunner and use django's own
Browse files Browse the repository at this point in the history
  • Loading branch information
Martijn Jacobs committed Sep 26, 2018
1 parent 2b59942 commit 0f8cf87
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 11 deletions.
13 changes: 3 additions & 10 deletions sandbox/settings/sandbox.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'disable_existing_loggers': True,
'root': {
'level': 'DEBUG' if DEBUG else 'INFO',
'handlers': ['console',],
'handlers': ['console', ],
},
'formatters': {
'verbose': {
Expand Down Expand Up @@ -85,7 +85,7 @@
'level': 'WARNING'
},
'django.request': {
'handlers': ['mail_admins',],
'handlers': ['mail_admins', ],
'level': 'ERROR',
'propagate': False
},
Expand Down Expand Up @@ -159,17 +159,10 @@
},
]

TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'

NOSE_ARGS = [
'-v',
'--with-doctest',
]

TIME_ZONE = 'UTC'

USE_I18N = True
USE_L10N = True
USE_TZ = True

from oscar.defaults import *
from oscar.defaults import * # noqa
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
],
# mark test target to require extras.
extras_require={
'dev': ['django-nose', 'coverage', 'mock', 'twine'],
'dev': ['coverage', 'mock', 'twine'],
'docs': ['sphinx', 'sphinx_rtd_theme'],
},
)

0 comments on commit 0f8cf87

Please sign in to comment.