We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a848b0 commit 493a2c7Copy full SHA for 493a2c7
.gitignore
@@ -11,3 +11,4 @@ run_it.py
11
*.sublime-project
12
*.sublime-workspace
13
.idea
14
+junit
tests/__main__.py
@@ -1,9 +1,11 @@
1
+import os
2
import unittest
3
import xmlrunner
4
5
6
if __name__ == '__main__':
7
+ output = os.path.join(os.getenv('CIRCLE_TEST_REPORTS', ''), 'junit')
8
suite = unittest.TestLoader().discover('.')
- runner = xmlrunner.XMLTestRunner(output='reports', verbosity=2,
9
+ runner = xmlrunner.XMLTestRunner(output=output, verbosity=2,
10
failfast=False, buffer=False)
runner.run(suite)
0 commit comments