Opened 17 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
Pull Requests:How to create a pull request

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

Change History (7)

by devin, 17 years ago

patch and doc changes

comment:1 by devin, 17 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, 17 years ago

Has patch: set

comment:3 by Russell Keith-Magee, 17 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), 16 years ago

milestone: post-1.0

Milestone post-1.0 deleted

by Arthur Koziel, 16 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