Top "Nosetests" questions

Nose is an alternate Python unittest discovery and running process.

How to run a single test or single TestCase with django-nose?

With Django's normal test runner, you can drill down to run tests in a specific app, a specific subclass of …

django unit-testing testing nosetests django-nose
Problems using nose in a virtualenv

I am unable to use nose (nosetests) in a virtualenv project - it can't seem to find the packages installed …

python virtualenv nose nosetests
How to output coverage XML with nosetests?

I'm trying to output the coverage XML of my nosetests so they show up on Hudson. The line I'm executing …

python code-coverage cobertura nosetests
Can I restrict nose coverage output to directory (rather than package)?

My SUT looks like: foo.py bar.py tests/__init__.py [empty] tests/foo_tests.py tests/bar_tests.py …

python code-coverage nose nosetests
"No source for code" message in Coverage.py

I ran a build last night, successfully. I got up this morning and ran another without changing any configuration or …

python continuous-integration code-coverage nosetests
List all Tests Found by Nosetest

I use nosetests to run my unittests and it works well. I want to get a list of all the …

python unit-testing nose nosetests
pdb.set_trace() causing frozen nosetests, does not drop into debugger

I'm running a suite of tests (.py files) using nosetests. Using a classic import pdb; pdb.set_trace() the nosetests …

python pdb nosetests
How do I measure the execution time of python unit tests with nosetests?

Is there a way to time the execution time of individual Python tests which are run by nosetests ?

python nosetests
How to run specific test in Nose2

In previous version of Nose testing framework, there were several ways to specify only a subset of all tests: nosetests …

python nosetests unittest2 nose2
nosetests framework: how to pass environment variables to my tests?

I have a test suite that gets executed as a part of a larger build framework, written in Python. Some …

python nosetests