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

I am using nose to run tests on my package, including running in CI (CircleCI, specifically). It was fun and great until suddenly last week tests start to fail due...

It isn't immediately clear that this option only checks the basename of the file, rather than the entire path - make it a bit clearer in the help message so...

Tested with Python 3.6 ``` >>> __import__('os.path', fromlist=[None]) >>> __import__('nose', fromlist=[None]) Traceback (most recent call last): File "", line 1, in File "", line 1014, in _handle_fromlist TypeError: Item in...

Hello, I have a a standard module for running my testSuite that do some initial configuration. When I add the MultiProcessing() module to the list of modules to be used...

I'd like to be able to change the default header output on a failed test. I'd like to change it from: ``` ====================================================================== FAIL: test_create_currency (accounting.tests.test_factory.FactoryTests) ---------------------------------------------------------------------- ``` To: ```...

Hello, I'm using nose to run python tests, and the plugin Xunit to generate the xml file. My problem is that i have a lot of data written in the...

In some cases nose reports spurious errors about file nofound (firing those during test import). See detailed analysis in https://github.com/nose-devs/nose/issues/1037

I'm getting a non-zero exit code when all tests either pass or are skipped. Using Miniconda on Appveyor/Windows 64bit/Python 3.6/nose 1.3.7. The exact error looks like: ``` nosetests build/lib/pysb -a...

On Windows. ``pip install win_unicode_console`` Run following code with ``nosetests`` ``` from unittest import TestCase import win_unicode_console win_unicode_console.enable() def test_test(): pass class FooTest(TestCase): def test_test(self): pass ``` Result: ``` Traceback...

So, I run some tests: ``` nosetests test --with-id -I system_test ... Ran 117 tests in 608.830s FAILED (SKIP=5, errors=5, failures=3) ``` There is a lot of output, so I...