nose icon indicating copy to clipboard operation
nose copied to clipboard

nose is nicer testing for python

Results 107 nose issues
Sort by recently updated
recently updated
newest added

What steps will reproduce the problem? 1. use this simple 2-case file $ cat > tests.py def test1() assert True def test2(): assert True 1. Run: $ nosetests tests.py -verbose=2...

this issue may be debatable that its a bug or feature hence here is the example why it should be considered a bug. **Actual** : as per [document](http://nose.readthedocs.io/en/latest/plugins/testid.html) it works...

LazySuite keeps all a reference to all tests (even those that have been run) under self._precache. When running a large number of tests this can cause nose to use up...

As the title says, LazySuite._precache is never cleared, this means that all Test instances are kept in memory for the life time of a test run. I work with a...

I use the 'multiprocess' plugin when my tests are too slow. However I keep getting a TimedOutException almost every time. The current default value for --process-timeout (10 seconds) is too...

I'm having an issue similar to what is referenced in #856. I'm using nose 1.3.7 and Python 3.6. The package I'm testing is a namespace package, but the test directory...

I have detected that if you have following structure of files: | | - tests/test_main.py | - app/task/__init__.py | - app/tools/__init__.py | - app/tools/setup.py | - app/tools/something/__init__.py All files are...

like [nose2](http://nose2.readthedocs.io/en/latest/configuration.html#configuring-test-discovery), is there any way to achieve this in nose1? I want to change the discover rule only for methods.

A test code using Queue, threading with numpy hangs nosetests. The code looks like: ``` import numpy from Queue import Queue from threading import Thread a = numpy.eye(100) q =...

If so, the [classifiers](https://github.com/nose-devs/nose/blob/master/setup.py#L119-L120) is not reporting that correctly. It is not including `'Programming Language :: Python :: 2[.x]'`