Skip to content

Commit

Permalink
Fix the JUnit schema by changing 'skips' to 'skipped'
Browse files Browse the repository at this point in the history
  • Loading branch information
mrijke authored and linuxmaniac committed Feb 8, 2020
1 parent 8bf1934 commit 51600e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion django_jenkins/runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def stopTestRun(self):
self.tree.set('name', 'Django Project Tests')
self.tree.set('errors', str(len(self.errors)))
self.tree.set('failures', str(len(self.failures)))
self.tree.set('skips', str(len(self.skipped)))
self.tree.set('skipped', str(len(self.skipped)))
self.tree.set('tests', str(self.testsRun))
self.tree.set('time', "%.3f" % run_time_taken)
super(EXMLTestResult, self).stopTestRun()
Expand Down

0 comments on commit 51600e0

Please sign in to comment.