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

When multiprocess test timeout (interrupted by TimedOutException), only stacktrace appears in console, no INFO and DEBUG logs. I have many integration tests running in multiprocess mode against on service. Sometimes...

I am running tests using this command: nosetests -s -v --logging-datefmt="%(asctime)s" Test_cases\test_calculator.py > curious.log 2>&1 and nosetests -s -v --logging-datefmt="%(asctime)s" Test_cases\test_calculator.py I dont see any datetime in logs or console....

I have the following structure ``` └───test_package └───__init__.py └───test_module__.py └─────def test_test ``` I launch ``nosetests --verbose`` and it says ``test_package.test_module.test_test ... ok`` So far so good. But once I delete...

System: Ubuntu Trusty in Travis CI Python version: Python 2.6.9 Expected results: Running `nosestests` with `--processes=-1` without setting `_multiprocess_can_split_ = True` causes individual test classes to be run by a...

If KeyboardInterrupt is raised during testing, then testing stops immediately, the number of completed tests is reported, and an exit code of zero is returned. I found [PR#682](https://github.com/nose-devs/nose/pull/682) from a...

http://nose.readthedocs.io/en/latest/plugins/writing.html#recipes Example: examples/html_plugin/htmlplug.py can not open , raise 404

When I used `nosetests` command with `--stop` option, I failed to run my test, and it raises an exception. And, I found that `logging.exception` must be called from only `except`...

Hey guys, I occasionally run into this issue: ERROR: Failure: TypeError (Required argument 'name' (pos 1) not found) ---------------------------------------------------------------------- Traceback (most recent call last): File "~/packages/Nose/Nose-1.x.x.5208.9201/RHEL5_64/DEV.STD.PTHREAD/build/lib/python2.7/site-packages/nose/loader.py", line 525, in makeTest...

Would it be possible to make a new release with the latest version of the `plugins/xunit` so that `--xunit-prefix-with-testsuite-name` is supported?

We run nose with python selenium and occasionally hit a nose issue with KeyErrors that then turn into broken pipes and we can't recover from. Python 2.6.6 nosetests --goober --processes=1...