Use xunitmp by default, rather than standard xunit

This commit is contained in:
Calen Pennington
2016-05-10 14:29:47 -04:00
parent 6ebda5ea1f
commit 5249504edc
4 changed files with 2 additions and 4 deletions

View File

@@ -54,7 +54,6 @@ _NOSEID_DIR.makedirs_p()
NOSE_ARGS = [
'--id-file', _NOSEID_DIR / 'noseids',
'--xunit-file', _REPORT_DIR / 'nosetests.xml',
]
NOSE_PLUGINS = [

View File

@@ -96,7 +96,6 @@ _NOSEID_DIR.makedirs_p()
NOSE_ARGS = [
'--id-file', _NOSEID_DIR / 'noseids',
'--xunit-file', _REPORT_DIR / 'nosetests.xml',
]
NOSE_PLUGINS = [

View File

@@ -121,7 +121,7 @@ class SystemTestSuite(NoseTestSuite):
cmd = (
'./manage.py {system} test --verbosity={verbosity} '
'{test_id} {test_opts} --settings=test {extra} '
'--with-xunit --xunit-file={xunit_report}'.format(
'--with-xunitmp --xunitmp-file={xunit_report}'.format(
system=self.root,
verbosity=self.verbosity,
test_id=self.test_id,

View File

@@ -1,6 +1,6 @@
[nosetests]
logging-clear-handlers=1
with-xunit=1
with-xunitmp=1
with-ignore-docstrings=1
with-id=1
exclude-dir=lms/envs