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)

result_test_runner_r8055.diff (2.8 KB ) - added by devin 16 years ago.
patch and doc changes
result_test_runner_r10680.diff (3.1 KB ) - added by Arthur Koziel 15 years ago.
Updated patch for r10680

Download all attachments as: .zip

Change History (7)

by devin, 16 years ago

patch and doc changes

comment:1 by devin, 16 years ago

Triage Stage: UnreviewedDesign 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 devin, 16 years ago

Has patch: set

comment:3 by Russell Keith-Magee, 16 years ago

milestone: post-1.0
Triage Stage: Design decision neededAccepted

A good idea, but if we're going to hit v1.0 we're going to need to defer for a while.

comment:4 by (none), 15 years ago

milestone: post-1.0

Milestone post-1.0 deleted

by Arthur Koziel, 15 years ago

Updated patch for r10680

comment:5 by Eric Holscher, 14 years ago

Resolution: fixed
Status: newclosed
Note: See TracTickets for help on using tickets.
Back to Top