0
votes
2answers
51 views
How to produce html unit test output in Python?
I'm looking for any way to display the results of python unit tests in an html summary. There are tools like this for Java and Ruby... haven't yet located any tools that seem to do this for Python. …
0
votes
2answers
36 views
Run nosetests with warnings as errors?
When running nosetests from the command line, how do you specify that 'non-ignored' warnings should be treated as errors?
By default, warnings are printed, but not counted as failures:
…
1
vote
3answers
76 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 …
0
votes
1answer
77 views
How do I use PyMock and Nose with Django models?
I'm trying to do TDD with PyMock, but I keep getting error when I use Nose and execute core.py from command line:
"ERROR: Failure: ImportError (Settings cannot be imported, because environment …
1
vote
3answers
165 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 …
0
votes
1answer
91 views
nose tests of Pylons app with models in init_model?
I have a stock Pylons app created using paster create -t pylons with one controller and matched functional test, added using paster controller, and a SQLAlchemy table and mapped ORM class. The …
1
vote
5answers
111 views
Python test framework with support of non-fatal failures
I'm evaluating "test frameworks" for automated system tests; so far I'm looking for a python framework.
In py.test or nose I can't see something like the EXPECT macros I know from google testing …
0
votes
1answer
74 views
setuptools / dpkg-buildpackage: Refuse to build if nosetests fail
I have a very simple python package that I build into debian packages using setuptools, cdbs and pycentral:
setup.py:
from setuptools import setup
setup(name='PHPSerialize',
version='1.0',
…
1
vote
2answers
93 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 …
0
votes
4answers
203 views
How should I verify a log message when testing Python code under nose?
Hi all
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 …
3
votes
2answers
213 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 …
1
vote
2answers
165 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 = …
0
votes
2answers
119 views
Can I restrict nose coverage output to directory (rather than package)?
My SUT looks like:
foo.py
bar.py
tests/__init__.py [empty]
tests/foo_tests.py
tests/bar_tests.py
tests/integration/__init__.py [empty]
tests/integration/foo_tests.py
tests/integration/bar_tests.py
…
2
votes
2answers
312 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.
2
votes
0answers
125 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
…
