Tagged Questions
The nosetests tag has no wiki summary.
6
votes
3answers
210 views
How do I suppress App Engine logging while running unit tests?
I'm using gaetestbed in my GAE app, and it's working very well. However, the useful statements that nose prints when your test is incorrect is being washed away by App Engine's logging:
root: Level ...
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
4answers
410 views
“No source for code” message in Coverage.py
I ran a build last night, successfully. I got up this morning and ran another without changing any configuration or modifying any source code. Now my build is failing with the message "No source for ...
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 ...
4
votes
3answers
589 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 ...
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
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
313 views
nosetests is capturing the output of my print statements. How to circumvent this?
When I type
$ nosetests -v mytest.py
all my print outputs are captured when all tests pass.
I want to see print outputs even everything passes.
So what I'm doing is to force an assertion error to ...
3
votes
2answers
312 views
setting breakpoints with nosetests --pdb option
Nosetests --pdb let's me halt upon error or failure, but this is too late for my needs. Stepping through code during execution helps me debug where the problem is.
However, nosetests are helpful as ...
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
1answer
146 views
Nose Tests - File Uploads
How would one go about testing a Pylons controller (using Nose Tests) that takes a file upload as a POST parameter?
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
4answers
848 views
Disabling Python nosetests
When using nosetests for Python it is possible to disable a unit test by setting the test function's __test__ attribute to false. I have implemented this using the following decorator:
def ...
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
3answers
693 views
tipfy nosetest ImportError: No module named fancy_urllib
I am trying to run nosetest using tipfy and google app engine but I keep getting an import error:
From the google_appengine directory I execute the following command (directory contains ...
2
votes
0answers
118 views
How does the nosetests sqlalchemy plugin work?
The python unit testing framework called nosetest has a plugin for sqlalchemy, however there is no documentation for it that I can find. I'd like to know how it works, and if possible, see a code ...
2
votes
2answers
345 views
python-nose: assertion library?
Is there a library which of nose-friendly assertions things like membership and identity (eg, assert_contains(x, y), assert_is(a, b))?
2
votes
1answer
1k views
How do I run a single test with Nose in Pylons
I have a Pylons 1.0 app with a bunch of tests in the test/functional directory.
I'm getting weird test results and I want to just run a single test.
The nose documentation says I should be able to ...
2
votes
2answers
424 views
nosetests --with-pylons test.ini => Error: no such option: --with-pylons
I followed the application to run the tests of pylons project:
http://pylonshq.com/docs/en/0.9.7/i18n/#testing-the-application
But when I run:
nosetests --with-pylons test.ini
It reports an ...
2
votes
4answers
628 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
438 views
Is there a gui for nosetests
I've been using nosetests for the last few months to run my Python unit tests.
It definitely does the job but it is not great for giving a visual view of what tests are working or breaking.
I've ...
1
vote
1answer
21 views
Why mocking is still effective after existing a code in nosetests multiple tests?
I have the following code test_A.py which mocks MyClass.mymethod:
from unittest import main
from mocker import Mocker, MockerTestCase
Class test_A(MockerTestCase):
def setUp(self):
...
1
vote
1answer
62 views
Anyone know how nosetest's -m, -i and -e work?
I am trying to get nosetests to identify my tests but it is not running any of my tests properly.
I have the following file structure
Project
+----Foo/
+----__init__.py
...
1
vote
1answer
57 views
Nosetests ran 0 tests
When I run
nosetests --doctest-extension=.txt
I will get
---------------------------------------------------------------------- Ran 0 tests in 0.002s
OK
Why it writes 0 tests in the case ...
1
vote
0answers
95 views
Running nose.run() multiples time with different config for Webdriver Python script
I'm wondering how get nose.run() twice using different configuration in a python script
I have a nosetest (unit test) where it needs to be run on 2 types
of browsers using webdriver .
The print ...
1
vote
2answers
141 views
Calling a Method in Python more Efficiently
I'm a newb working through Learn Python the Hard Way.
The point of this exercise is to write a word scanner for that passes the nosetests when run by a provided unit test.
While running nosetests on ...
1
vote
1answer
39 views
Configure NoseGAE to update index.yaml like development server
Is it possible to configure or modify the NoseGAE plugin to automatically update index.yaml when queries are run in tests (like the development server does)? I have 100% test coverage so this would be ...
1
vote
1answer
98 views
nosetests -h fails to run with error
I suspect I failed to install nosetests correctly.
I used easy_install nose - output was
Searching for nose
Best match: nose 1.0.0
Processing nose-1.0.0-py2.7.egg
nose 1.0.0 is already the active ...
1
vote
2answers
158 views
Problem running pylon webtests. ImportError and TestController is not defined errror
I have directory structure as follow:
gnukhata/tests/functional.
In functional folder I have web tests files. Following is the sample test.
from gnukhata.tests import *
class ...
1
vote
3answers
194 views
How to prevent nose from importing __init__.py files?
Can the nose testing framework be instructed to only run tests in test_*.py files?
In fact, doing nosetests A with the following directory structure:
A/
test_A.py
B/
__init__.py
imports B, ...
1
vote
0answers
104 views
Nosetests logcapture with Pylons not working
I'm writing unit tests for a Pylons web application I'm developing. I would like to see the logs.debug|info|etc when I run my tests and an error occurs, but right now it just captures the print() ...
1
vote
1answer
284 views
How do i “TIME” python unit tests with nosetests
Is there a way to time the execution time of individual Python tests which are run by nosetests ?
1
vote
1answer
290 views
Nosegae Unit Tests with gae-session on a Python Google App Engine Project
I can't get gae-sessions to work when I use unit tests. I'm not sure if it's a cookie issue or an internal gae-sessions issue (it uses memcache/the datastore for persistance). It works fine on the ...
1
vote
1answer
560 views
python unittest discovery does not discover tests
Python's unittest discover does not find my tests!
I have been using nose to discover my unit tests and it is working fine. From the top level of my project, if I run nosetests I get:
Ran 31 tests ...
1
vote
1answer
187 views
How to factorise python test cases with nosetests
I have several functions on graph f(), g() and h() that implements different algorithms for the same problem. I would like to unit-test these functions using unittest framework.
For each algorithm, ...
1
vote
2answers
638 views
How to output coverage XML with nosetests?
I'm trying to output the coverage XML of my nosetests so they show up on Hudson. The line I'm executing is:
nosetests --with-gae -v --all-modules --with-xunit --with-coverage
I see the coverage ...
1
vote
1answer
371 views
How do I get my hudson project build to fail on second set of nosetests?
I'm relatively new to Hudson, so please forgive me if this is a "duh" question.
I have a project written in python (employing pylons and nosetests) that includes both a server component and a client ...
1
vote
1answer
130 views
Pylons: nosetests, specify location of development.ini?
I'm running nosetests on a remote server.
On my local server my test.ini and development.ini files are in the same directory. On my remote server, they are not.
If I try to run just
nosetests
...
1
vote
1answer
462 views
Django load test fixtures with django-nose
How do you load test fixtures using the django-nose test runner?
1
vote
1answer
302 views
Nose: Capture script output as well as test output
If I put any print statements at the top of my module, not inside any class/function, nothing gets printed while running my test through nose.
import os
print 'hi'
...
1
vote
2answers
335 views
How to use nose with IronPython?
I installed nose using the 'setup.py install' on the command line , I am able to run 'nosetests' and any python file matching testMatch regular expression is picked up and tests are automated in the ...
1
vote
1answer
163 views
Not able to pass multiple override parameters using nose-testconfig 0.6 plugin in nosetests
I am able to override multiple config parameters using the nose-testconfig plugin only if I pass the overriding parameters on the command line, e.g.
nosetests -c nose.cfg -s --tc=jack.env1:asl ...
1
vote
1answer
167 views
How to remove debugging from outputting with nosetests
I am using nosetests to test several scripts. But when I run nosetests it prints out the logging. I know it stores logging info into sys.stderr. Does anyone know how to stop this from outputting to ...
1
vote
3answers
1k views
Configure “execute shell” scripts in Hudon with Python
I am using Hudson for continuous integration in out project. We are using python, git and nose tests for unit testing. What I need is that Hudson should execute nose tests after every build. For that ...
1
vote
1answer
485 views
Combining nosetests with contracts for Python
I'm using contracts for Python to specify preconditons/postconditions/invariants. I'm also using doctests for doing unit testing.
I'd like to have all of my doctest unit tests run with contracts ...
1
vote
2answers
210 views
Coverage not showing executed lines in virtualenv
I have a project and I am trying to run nosetests with coverage. I am running in a virtualenv.
When I run
$ python setup.py nosetests
The tests run fine but coverage is not showing that any code is ...
1
vote
3answers
472 views
List all Tests Found by Nosetest
I use nosetests to run my unittests and it works well. I want to get a list of all the tests nostests finds without actually running them. Is there a way to do that?