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

This pr checks that any encountered '.py' file is a regular file to address #1086. This ensures that nose will skip any fifo/device/etc that is named with the '.py' extension.

If nose encounters a non regular file (fifo, device, etc) that has the .py extension, it hangs forever on that file.

if the TastCase inherits tornado.testing.LogTrapTestCase and runing under nose, test will fail because: File "/Developer/python/beginer_env/lib/python2.7/site-packages/tornado/testing.py", line 355, in run assert isinstance(handler, logging.StreamHandler) AssertionError According to tornado document, "This class assumes...

We suddenly lost the information regarding missing lines in Certbot (https://github.com/certbot/certbot). After doing some research I realized that we can use a cover config file and add the setting explicitly...

When I install nose using pip (pip3 install --upgrade nose) two scripts are created in /usr/local/bin. nosetests and nosetests-3.4. The python3 version I have installed (and the one pip3 is...

The `cover` plugin will omit files that never get imported from the coverage report entirely. Further, when it computes the % of code covered by unit tests, these files are...

Hi. I'm testing your --with-xunit in my jenkins pipeline. We have 30 targets that each run a couple of tests, and only one of them fails with the following error:...

Currently, logcapture uses formatError and formatFailure to extract the captured logging messages and (a) append them to the error text, which changes it from an error value to a string...

I'm using nose test generator. How to tag a specific generated test with a the specific tag: 'bug' Then it should be possible for the generated tests to be correctly...

Catch TypeError when checking import as well as ImportError. TypeError is thrownwhen using IronPython 2.7.6.3.