Tagged Questions
The python-nose tag has no wiki summary.
9
votes
5answers
2k views
How to organize python test in a way that I can run all tests in a single command?
Currently my code is organized in the following tree structure:
src/
module1.py
module2.py
test_module1.py
test_module2.py
subpackage1/
__init__.py
moduleA.py
...
4
votes
3answers
585 views
How to assert output with nosetest/unittest in python?
I'm writing tests for a function like next one:
def foo():
print 'hello world!'
so when i want to test this function the code will be like this:
import sys
from foomodule import foo
def ...
1
vote
1answer
166 views
Run multiprocess
I'm trying to run tests in parallel using nose.
I have setup a nose.cfg file to contain the following:
[nosetests]
verbosity=2
processes=2
I need to be able to run the programatically using either ...