Commit b3b5a5db by John Eskew Committed by GitHub

Merge pull request #16140 from edx/jeskew/fix_xunit_pathing_for_common

Fix saving of common/lib xunit test results.
parents 085566b6 c17524d4
...@@ -41,6 +41,7 @@ class PytestSuite(TestSuite): ...@@ -41,6 +41,7 @@ class PytestSuite(TestSuite):
if os.environ.get("SHARD", None): if os.environ.get("SHARD", None):
shard_str = "shard_{}".format(os.environ.get("SHARD")) shard_str = "shard_{}".format(os.environ.get("SHARD"))
self.report_dir = self.report_dir / shard_str self.report_dir = self.report_dir / shard_str
self.xunit_report = self.report_dir / "nosetests.xml"
self.cov_args = kwargs.get('cov_args', '') self.cov_args = kwargs.get('cov_args', '')
...@@ -135,7 +136,7 @@ class SystemTestSuite(PytestSuite): ...@@ -135,7 +136,7 @@ class SystemTestSuite(PytestSuite):
cmd = ['pytest'] cmd = ['pytest']
cmd.extend([ cmd.extend([
'--ds={}'.format('{}.envs.{}'.format(self.root, self.settings)), '--ds={}'.format('{}.envs.{}'.format(self.root, self.settings)),
'--junitxml={}'.format(self.report_dir / "nosetests.xml"), "--junitxml={}".format(self.xunit_report),
]) ])
cmd.extend(self.test_options_flags) cmd.extend(self.test_options_flags)
if self.verbosity < 1: if self.verbosity < 1:
...@@ -212,7 +213,6 @@ class LibTestSuite(PytestSuite): ...@@ -212,7 +213,6 @@ class LibTestSuite(PytestSuite):
super(LibTestSuite, self).__init__(*args, **kwargs) super(LibTestSuite, self).__init__(*args, **kwargs)
self.append_coverage = kwargs.get('append_coverage', False) self.append_coverage = kwargs.get('append_coverage', False)
self.test_id = kwargs.get('test_id', self.root) self.test_id = kwargs.get('test_id', self.root)
self.xunit_report = self.report_dir / "nosetests.xml"
@property @property
def cmd(self): def cmd(self):
...@@ -223,7 +223,7 @@ class LibTestSuite(PytestSuite): ...@@ -223,7 +223,7 @@ class LibTestSuite(PytestSuite):
cmd.extend([ cmd.extend([
"-p", "-p",
"no:randomly", "no:randomly",
"--junitxml=".format(self.xunit_report), "--junitxml={}".format(self.xunit_report),
]) ])
cmd.extend(self.passthrough_options + self.test_options_flags) cmd.extend(self.passthrough_options + self.test_options_flags)
if self.verbosity < 1: if self.verbosity < 1:
......
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