Tagged Questions

Nose is an alternate Python unittest discovery and running process. It is intended to mimic the behavior of py.test as much as is reasonably possible.

learn more… | top users | synonyms

67
votes
9answers
12k views

Preferred Python unit-testing framework

So far I've been using the built-in unittest module for unit-testing Python code. However, for simple cases it seems like overkill. Being a derivative of xUnit, it appears a bit heavy for the dynamic ...
60
votes
7answers
11k views

Practicing BDD with python

Which are the most advanced frameworks and tools there are available for python for practicing Behavior Driven Development? Especially finding similar tools as rspec and mocha for ruby would be great. ...
11
votes
1answer
928 views

Python nose vs. unittest

What are the advantages and disadvantages of Python's nose library versus unittest.
8
votes
2answers
2k views

I need a sample of python unit testing sqlalchemy model with nose

Can someone show me how to write unit tests for sqlalchemy model I created using nose. I just need one simple example. Thanks.
7
votes
1answer
974 views

Python Nose Import Error

I can't seem to get the nose testing framework to recognize modules beneath my test script in the file structure. I've set up the simplest example that demonstrates the problem. I'll explain it ...
6
votes
2answers
203 views

python doctest default namespace

In the doctests of my module I would like to reference my module with the full namespace, for example: hp.myfunc(1) And I would like to avoid cluttering the doctests by writing: import healpy ...
6
votes
2answers
560 views

Is it possible to use Nose to run one test multiple times, concurrently?

Is it possible to use nose to run a single test concurrently (across multiple processes) and aggregate the result in to a single pass/fail result? We have the need to run the same test multiple times ...
6
votes
2answers
297 views

Is there a way to make freshen tests fail on undefined tests?

By default when I run a freshen scenario, which contains an undefined given/when/then clause, that test is simply marked as undefined. No further helpful message as to what actually isn't defined is ...
6
votes
2answers
422 views

Are there any visual tools for Python unit tests?

I'm writing quite a few unit tests and using nosetests to run them. Nose certainly makes it nice and easy to run tests, but the output can be pretty cluttered at the best of times, and a downright ...
6
votes
4answers
1k views

Nose unable to find tests in ubuntu

Is there any reason why Nose wouldn't be able to find tests in Ubuntu 9.04? I'm using nose 0.11.1 with python 2.5.4. I can run tests only if I explicitly specify the filename. If I don't specify the ...
5
votes
1answer
198 views

Python imports for tests using nose - what is best practice for imports of modules above current package

This is a question which is asked frequently in different forms, and often obtains "lol you're not doing it properly" responses. Pretty sure that's because there's a common sense scenario people ...
5
votes
1answer
213 views

Scrapy Unit Testing

I'd like to implement some unit tests in a Scrapy (screen scraper/web crawler). Since a project is run through the "scrapy crawl" command I can run it through something like nose. Since scrapy is ...
5
votes
2answers
542 views

How do I tell django-nose where my tests are?

I have my tests for a Django application in a tests directory: my_project/apps/my_app/ ├── __init__.py ├── tests │ ├── __init__.py │ ├── field_tests.py │ └── storage_tests.py ├── urls.py ├── ...
4
votes
2answers
94 views

Is nose an extension of unittest?

I'm about to use nose as a method for test discovery on my already implemented unittest classes in my rather large project. I was under the impression that nose is just used primarily for test ...
4
votes
1answer
118 views

Check that a function raises a warning with nose tests

I'm writing unit tests using nose, and I'd like to check whether a function raises a warning (the function uses warnings.warn). Is this something that can easily be done?
4
votes
1answer
238 views

Getting tests to parallelize using nose in python

I have a directory with lots of .py files (say test_1.py, test_2.py and so on) Each one of them is written properly to be used with nose. So when I run nosetests script, it finds all the tests in all ...
4
votes
2answers
654 views

Unit testing authorization in a Pylons app fails; cookies aren't been correctly set or recorded

I'm having an issue running unit tests for authorization in a Pylons app. It appears as though certain cookies set in the test case may not be correctly written or parsed. Cookies work fine when ...
4
votes
2answers
412 views

How can I get nose to find class attributes defined on a base test class?

I'm getting some integration tests running against the database, and I'd like to have a structure that looks something like this: class OracleMixin(object): oracle = True # ... set up the ...
4
votes
5answers
1k views

Problems using nose in a virtualenv

I am unable to use nose (nosetests) in a virtualenv project - it can't seem to find the packages installed in the virtualenv environment. The odd thing is that i can set test_suite = ...
3
votes
1answer
58 views

Nosetests & Combined Coverage

I have many projects that I'm programatically running: nosetest --with-coverage --cover-html-dir=happy-sauce/ The problem is that for each project, the coverage module overwrites the index.html ...
3
votes
2answers
81 views

Python/Nosetests: conditional variables based on whether nosetest is running

I'm running nosetests which have a setup function that needs to load a different database than the production database. The ORM I'm using is peewee which requires that the database for a model is set ...
3
votes
1answer
107 views

Making Nose fail slow tests

I want to my tests to fail if they take longer than a certain time to run (say 500ms) because it sucks when a load of slightly slow tests mount up and suddenly you have this big delay every time you ...
3
votes
1answer
223 views

Nosetest including unwanted parent directories

I'm trying to limit nosetests to a specific directory, however during the test run it's including the parent directories of the dir I'm targetting and in doing so throws errors. Here's the key ...
3
votes
2answers
179 views

Python + nose: make assertions about logged text?

Is there some simple way of capturing and making assertions about logged messages with nose? For example, I'd like to be able to do something like: cook_eggs() assert_logged("eggs are ready!")
3
votes
2answers
385 views

Getting Python's unittest results in a tearDown() method

Is it possible to get the results of a test (i.e. whether all assertions have passed) in a tearDown() method? I'm running Selenium scripts, and I'd like to do some reporting from inside tearDown(), ...
3
votes
2answers
973 views

Interactive debugging with nosetests in PyDev

I'm using PyDev ( with Aptana ) to write and debug a Python Pylons app, and I'd like to step through the tests in the debugger. Is it possible to launch nosetests through PyDev and stop at ...
3
votes
3answers
457 views

How to make py.test or nose to look for tests inside all python files?

I do have several small modules where the tests are inside them and py.test or nose does not look for them because they do not contain test in their filename. How can I convince py.test or nose to ...
3
votes
2answers
107 views

Is it possible to run doctests using unit2

I recently switched from nose to the new unittest2 package for my python unit testing needs. It does everything I want, except from the fact that I can't get its "discover" command to recognize the ...
3
votes
4answers
200 views

Using gaetestbed within virtualenv

I'd like to give GAE Testbed a try, but am running into the following error after completing the instructions on its homepage. $ nosetests --with-gae ... ImportError: No module named dev_appserver ...
3
votes
3answers
257 views

Is there a way to get python's nose module to work the same in __main__ and on the command line?

I'm not sure of how to get the nose module's __main__ handler to work. I have this at the end of my test module: if __name__ == "__main__": import nose nose.main() Which gives me: ...
3
votes
2answers
420 views

ImportError using nose, no ImportError using raw unittest?

I get an ImportError when running my unittests using Nose and I don't when I just run it standalone. All files referred to here may be seen at http://gist.github.com/395541# . If I run the test ...
3
votes
1answer
345 views

How to use nose coverage with --timid flag

I'd like to run "nosetests --with-coverage" using Ned Batchelder's coverage module, but passing the coverage module the --timid flag. Is there a way (e.g. setting an environment variable) to make ...
3
votes
1answer
167 views

Why does nose finds tests in files with only 644 permission?

Today I ran a bunch of doctests using Python 2.6 on a Ubuntu 9.10 with nose : nosetests --with-doctest Ran 0 tests in 0.001s OK WTF? I had tests in that files, why didn't that work? I changed ...
3
votes
3answers
765 views

How do I generate coverage xml report for a single package?

I'm using nose and coverage to generate coverage reports. I only have one package right now, ae, so I specify to only cover that: nosetests -w tests/unit --with-xunit --with-coverage ...
3
votes
1answer
474 views

Using Nose & NoseXUnit on a Python package

This is a previous post detailing a CI setup for Python. The asker and answerer detail the use of Nose and NoseXUnit with Hudson for their builds. However, NoseXUnit throws an error when run on any ...
3
votes
2answers
290 views

Suppressing Cherrypy's output when runing unit tests using Nose

I'm using cherrypy to implement a web server and I use nose to run my unit tests. However, there is a lot of debug noise that nose catches and prints to stdout, even when I use the --nologcapture, ...
3
votes
3answers
2k views

Nose test script with command line arguments

I would like to be able to run a nose test script which accepts command line arguments. For example, something along the lines: test.py import nose, sys def test(): # do something with the ...
3
votes
4answers
1k views

How should I verify a log message when testing Python code under nose?

I'm trying to write a simple unit test that will verify that, under a certain condition, a class in my application will log an error via the standard logging API. I can't work out what the cleanest ...
3
votes
2answers
606 views

Unit testing with nose: tests at compile time?

Is it possible for the nose unit testing framework to perform tests during the compilation phase of a module? In fact, I'd like to test something with the following structure: x = 123 # [x is used ...
3
votes
1answer
393 views

Using paver and nose together with an atypical directory structure

I'm trying to write a task for Paver that will run nosetests on my files. My directory structure looks like this: project/ file1.py file2.py file3.py build/ pavement.py ...
3
votes
2answers
364 views

How do I get nose to discover dynamically-generated testcases?

This is a follow-up to a previous question of mine. In the previous question, methods were explored to implement what was essentially the same test over an entire family of functions, ensuring ...
2
votes
2answers
132 views

Error when running tests of scipy and numpy on OS X Snow Leopard

I am new to stackoverflow as well as Python, and I hope to use stackoverflow to learn and improve my Python programming. However, as soon as I set up Python, SciPy, NumPy on my Mac, I encountered a ...
2
votes
2answers
89 views

How does django-nose differ from the default Django test-runner

I've been seeing and reading about a lot of people using nose to run their Django tests. I haven't been able to figure out the added benefits of using Nose to run my Django tests. If someone could ...
2
votes
1answer
83 views

Nose ignores test with custom decorator

I have some relatively complex integration tests in my Python code. I simplified them greatly with a custom decorator and I'm really happy with the result. Here's a simple example of what my ...
2
votes
1answer
94 views

Can't import django packages with nosegae

I am trying to get started with using nosegae, however I run into the issue that I can't seem to get it to pass even the simplest of cases when using django. when running without the ...
2
votes
2answers
86 views

How to structure nose unit tests which build on each other?

Example Let's say you have a hypothetical API like this: import foo account_name = foo.register() session = foo.login(account_name) session.do_something() The key point being that in order to ...
2
votes
3answers
102 views

Python nose tests (actually the error is from Mox) print out errors one character per line (with line numbers!)

I've recently started using Nose for my unit tests. It's pretty good except that sometimes when an error occurs it prints out the error information in a really weird way. It splits it up into 1 ...
2
votes
1answer
155 views

I am a php programmer converting to python. Please explain the importance (or non importance) of unit testing. I never unit tested with php! [closed]

I am at a point in my learning about solid software development where I realize that the "pedal-to-the-medal code at light speed and pray for good results with no real plan" approach does not work. I ...
2
votes
1answer
91 views

new class instance not being initialized

I'm writing a package, and doing my testing like a good little programmer, but here's what happens: class TestOne(unittest.TestCase): def setUp(self): self.finder = Finder() def ...
2
votes
1answer
143 views

How can i use nosetest to run an shell script or another python script

nose is a test runner which extends PyUnit. Is it possible to write e.g $ nosetests --with-shell myTest.py -myargs test If not, then is there a plugin, or do i need to develop it myself. Any ...

1 2 3