Top "Nose" questions

Nose is an alternate Python unittest discovery and running process.

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
Make nose test runner show logging even if tests pass

I am using nosetests test.py to run unit tests: import unittest import logging class Test(unittest.TestCase): def test_…

python unit-testing logging nose
How to mock generators with mock.patch

I have gone through the page https://docs.python.org/3/library/unittest.mock-examples.html and i see that they have …

python generator nose python-unittest python-mock
Import errors when running nosetests that I can't reproduce outside of nose

I'm running into a mysterious import error when using nosetests to run a test suite that I can't reproduce outside …

python unit-testing importerror nose
Python nosetests with coverage no longer shows missing lines

I've been using the following command to run tests and evaluate code coverage for a Python project for over a …

python nose coverage.py
Nose Test Generators inside Class

Is it possible to run nose test generators inside custom classes? I am trying to convert the example into a …

python generator nose
How to run Python nose tests with a different version of Python

We have CentOS with the ancient Python 2.4 interpreter. But we would like to write out tests with a newer 2.5/2.6 syntax. …

python unit-testing centos nose