Commit 1212bbd4 authored by Vladimir Rusinov's avatar Vladimir Rusinov

Override nose default test match regexp.

parent f45127a4
...@@ -102,3 +102,7 @@ LOGGING = { ...@@ -102,3 +102,7 @@ LOGGING = {
INSTALLED_APPS = INSTALLED_APPS + ('django_nose', ) INSTALLED_APPS = INSTALLED_APPS + ('django_nose', )
TEST_RUNNER = 'django_nose.NoseTestSuiteRunner' TEST_RUNNER = 'django_nose.NoseTestSuiteRunner'
# Override default test match regexp (?:^|[\\b_\\.-])[Tt]est.
# It will match things like get_test_file which is not a test.
NOSE_ARGS = [r'--match=(?:^|[\b_\./-])^[Tt]est', ]
\ No newline at end of file
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment