Opened 16 years ago
Closed 14 years ago
#7884 closed (fixed)
Test framework needs option to run tests and return statuses
Reported by: | devin | Owned by: | devin |
---|---|---|---|
Component: | Testing framework | Version: | dev |
Severity: | Keywords: | ||
Cc: | devin@… | Triage Stage: | Accepted |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
Currently the test framework just uses a unittest.TextTestRunner to run tests and output results to stderr. It would be nice to support an alternate TestRunner that would return results instead.
This would be particularly useful for running automated tests and storing test results. Currently for our automated testing, I'm having to regex the stderr for results. Not ideal.
I'm going to go ahead and write a patch for this
Attachments (2)
Change History (7)
by , 16 years ago
Attachment: | result_test_runner_r8055.diff added |
---|
comment:1 by , 16 years ago
Triage Stage: | Unreviewed → Design decision needed |
---|
I wrote the patch to add this functionality by passing an optional unittest.TestResult to run_tests. Of course you could just write your own run_tests test runner, but it seems this is something we should be supporting.
comment:2 by , 16 years ago
Has patch: | set |
---|
comment:3 by , 16 years ago
milestone: | → post-1.0 |
---|---|
Triage Stage: | Design decision needed → Accepted |
A good idea, but if we're going to hit v1.0 we're going to need to defer for a while.
comment:5 by , 14 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Seems like this is provided by:
Please re-open if I'm wrong.
patch and doc changes