RETIRED, further work has moved to Debian project infrastructure
Go to file
Tim Cuthbertson 9c636cf56a Merge pull request #29 from JBKahn/master
Remove hacky stream watcher to improve compatibility
2016-04-13 08:23:00 +10:00
.gitignore use colorama on windows 2015-06-13 18:21:28 +10:00
Makefile updated makefile targets to just run `redo` 2013-08-14 13:36:43 +10:00
VERSION 0.4.3 2015-06-14 15:00:55 +10:00
encoding_test.py fall back to repr() when we can't actually decode a failure message, fixes #14 2012-06-04 22:08:54 +10:00
pypi.do update pypi task 2013-08-30 18:12:52 +10:00
readme.rst Update readme.rst 2016-04-10 14:02:05 -04:00
rednose-local.xml.do updated makefile targets to just run `redo` 2013-08-14 13:36:43 +10:00
rednose.dist more build stuff 2013-08-14 09:22:10 +10:00
rednose.py Support test ids from nose test ids. 2016-04-10 15:53:01 -04:00
rednose.xml.template add github link, fixes #27 2015-06-20 11:15:30 +10:00
sample_test.py got 0test working with python 2&3; rednose verifiably works in both 2012-03-17 23:32:49 +11:00
setup.py add github link, fixes #27 2015-06-20 11:15:30 +10:00
test.do more build stuff 2013-08-14 09:22:10 +10:00

readme.rst

rednose

rednose is a nosetests plugin for adding colour (and readability) to nosetest console results.

Installation:

easy_install rednose

or from the source:

./setup.py develop

Usage:

nosetests --rednose

or:

export NOSE_REDNOSE=1
nosetests

Rednose by default uses auto-colouring, which will only use colour if you're running it on a terminal (i.e not piping it to a file). To control colouring, use one of:

nosetests --rednose --force-color
nosetests --no-color

(you can also control this by setting the environment variable NOSE_REDNOSE_COLOR to 'force' or 'no')

Rednose by default prints file paths relative to the working directory. If you want the full path in the traceback then use:

nosetests --rednose --full-file-path

Rednose supports printing the test results mid run as well as at the end, to enable it use:

nosetests --rednose --immediate