nosetests is the main [tag:nose] script for running tests with automatic discover

learn more… | top users | synonyms

2
votes
2answers
71 views

ex48 Learn Python the hard way [closed]

direction = ['north', 'south', 'east', 'west', 'down', 'up', 'left', 'right', 'back'] verbs = ['go', 'stop', 'kill', 'eat'] stop = ['the', 'in', 'of', 'from', 'at', 'it'] nouns = ['door', ...
0
votes
1answer
21 views

Unit testing Cherrypy HTTPRedirect.

I’m writing a cherrypy application that needs to redirect to a particular page and I use HTTPRedirect(‘mynewurl’, status=303) to achieve this. This works inasmuch as the browser (Safari) redirects to ...
1
vote
0answers
19 views

mock objects in python are not working on Jenkins?

I have a method, which needs to be mocked dependend on params. e.g.: mock_obj.method('param1').get() returns 10 mock_obj.method('param2').get() returns '~/Programs' etc. I do that using ...
0
votes
0answers
10 views

Parallel nosetests with test generators

I'm trying to get my tests to run in parallel with nosetests --processes=2, however I have several generated tests. These seem to error with Failure: TypeError (Can't make a test from <module ...
0
votes
1answer
26 views

python nosetests equivalent of unittest Testsuite in the test file

In nosetests, I know that you can specify which tests you want to run via a nosetests config file as such: [nosetests] tests=testIWT_AVW.py:testIWT_AVW.tst_bynd1,testIWT_AVW.py:testIWT_AVW.tst_bynd3 ...
1
vote
1answer
41 views

assert_raises() from nose tools doesn't really work

Ok, here is the problem: in exercise 49 of "Learn Python the Hard Way" by Zed Shaw, we need to test a couple of exceptions with assert_raises(). Here is the function, that I'm testing and if omitting ...
13
votes
1answer
222 views

Python nose2 vs. nose vs. unittest [closed]

I'd like to reiterate this old question, because much has changed in both unittest and nose (or nose2) since it's been asked. So: What are the pros and cons of using nose vs unittest? I'm familiar ...
0
votes
1answer
51 views

Specially named directories using nosetests

Does nosetests treat directories with certain names differently? Is a src directory special? If I have a project whose source directory is named src, nosetests seems to work fine. However, if the ...
0
votes
2answers
53 views

nose2 vs nose test discovery (nose2 not finding tests)

I just started a python project and I'm trying out different test frameworks. The problem I have is that nose2 does not find my tests: $ nose2 --verbose Ran 0 tests in 0.000s OK ...
1
vote
1answer
31 views

How to profile code during unit test with Nosetests?

I have looked at --with-timer and --with-profile to profile my tests but these options either give too little info or too much info. Example, if I have the following test: def test_foo(): ...
0
votes
0answers
33 views

Python Nosetests. Fail to enable coverage analysis

I'm trying to create a test suite for my python project and to establish it's coverage analysis. I wrote an example test and nosetests successfully runs it. But when i try to enable coverage analysis ...
0
votes
1answer
17 views

nosetests - output of `all_config_files` and `user_config_files`

I have the following directory structure: main/ |setup.cfg |foo.cfg |tests/ |setup.cfg |foo.cfg |test_simple.py And test test_simple.py: from nose.tools ...
0
votes
1answer
61 views

Implementing tearDownClass functionality in Python 2.6

I've implemented a "global" setUp() for multiple tests inside my class. Now I would like to know how to make a "global" teardown() function which will be run after the last test has finished, similar ...
1
vote
0answers
30 views

How to implement a global setUp() for multiprocessing using nosetests

So far I've used nosetests with just one process and everything works fine. To ensure my setUp is only executed once, I'm using a boolean var. def setUp(self): if not self.setupOk: ...
1
vote
1answer
37 views

Bug with nosetests? Adding a new case with autospec=True will take 15 seconds

http://lists.idyll.org/pipermail/testing-in-python/2013-March/005467.html I posted this yesterday. I don't mean to rush and duplicate. But I want to resolve this as soon as possible. I will do test ...
1
vote
3answers
133 views

How do I capture a screenshot if my nosetests fail?

I am running selenium webdriver tests with nosetests. I want to capture a screenshot whenever nosetests fail. How can I do it in the most effective way, either by using webdriver, python or nosetests ...
1
vote
1answer
168 views

Python nose test inheritance: load unit test fixtures from subclasses

I'm converting the test suite of a Python project from unittest to nose. The project's existing framework (based on unittest) is rather clunky, containing lots of heavily customised code for test ...
0
votes
1answer
75 views

How do I send cookies with request when testing Flask applications through nosetests?

I'm having some trouble sending a cookie with my test request. I've tried something like this: # First request to log in, retrieve cookie from response response = self.app_client.post('/users/login', ...
2
votes
2answers
112 views

Get IP Address when testing flask application through nosetests

My application depends on request.remote_addr which is None when i run tests through nosetests which uses app.test_client().post('/users/login', ....). How can I emulate an IP (127.0.0.1 works fine) ...
0
votes
1answer
313 views

PyCharm test gives: “ImportError: No module named nosetests”

The versions are PyCharm 2.7, nosetests-script.py version 1.2.1, and Python 2.6.8, via Python(x,y)-2.7.3.0. And Win7. I can nosetest from the command line fine. But when I build a nosetests PyCharm ...
0
votes
1answer
91 views

Nose: How to skip Tests by default?

I am using Python's nose and I have marked some of my Tests as "slow", as explained at http://nose.readthedocs.org/en/latest/plugins/attrib.html. I would like to skip all "slow" Tests by default when ...
4
votes
1answer
418 views

How to Fix Python Nose: Coverage not available: unable to import coverage module

I can't seem to get code coverage with Nose to work, despite having the plugin installed. Any ideas on how to fix this? 12:15:25 ~/sandbox/ec$ nosetests --plugins Plugin xunit Plugin deprecated ...
1
vote
0answers
205 views

Problematic sequencing of setUpModule/tearDownModule and imports under nose

I have some Python unittests that I am discovering and running with nose. I've observed some strange sequencing of the setUpModule(), tearDownModule() and imports of test modules. I have this ...
1
vote
0answers
557 views

Nosetest and Google API: “no module named apiclient.discovery”

I'm trying to nosetest my little Python script that uses the Google Translate API. Where do I have to install the API or what do I have to do so nosetest stops telling me ImportError: No module named ...
1
vote
1answer
91 views

Randomizing order of test execution with nosetests

I have a suite of tests that I recently discovered had an (incorrect) ordering relationship. They are all supposed to be independent. Nose appears to run tests in the same order each time, which will ...
1
vote
1answer
52 views

GAE on linux CI server

Folks, we're trying to setup the CI testing environment to test our GAE app. Our CI server runs on linux and Jenkins on top of that. Locally nosetests and nosegunit work fantastic; however, on the CI ...
0
votes
2answers
158 views

Override existing configuration when using nose in Python in a script

I'm trying to setup Python to execute nose, but only on an existing application I'm developing locally. I don't want nose running around all libraries that are currently installed. I do, however, want ...
0
votes
1answer
89 views

Python nose throws TypeError error with coverage

When I am using the nosetests 1.2.1 with coverage, it throws the below error. /usr/lib/python2.6/site-packages/tw/core/view.py:223: DeprecationWarning: object.__new__() takes no parameters obj = ...
1
vote
0answers
232 views

Launching nose with --with-gae option raises ValueError for missing lib/ipaddr

Setting up the testing framework and I can't seem to get past this error: Traceback (most recent call last): File "/usr/local/bin/nosetests", line 8, in <module> ...
1
vote
2answers
159 views

Why does nosetests say --with-coverage is not an option?

I am using nosetests to automatically discover and run my unittests. I would also like to have it generate coverage reports. When I run nosetests with the following command everything works just fine ...
1
vote
1answer
171 views

Django - how to change FileField upload_to path during testing

I am writing a test case for a Django model with a FileField. I'd like to change the upload path to prevent tests from having side effects on the rest of the system. I have tried passing a callable ...
0
votes
1answer
159 views

how to set attribute to a python file?

I know how to set attribute for a class, but can't find how to set for a file.. flow = ['1','4','5','2'] def test_generator(test): def test_parser(self): print test return ...
1
vote
1answer
86 views

run only doctests from python nose

Is there a way to run only doctests using Python Nose (nosetests)? . I do not want to run any unittests but only and only the doctests. Thanks.
3
votes
1answer
194 views

parallel testing with selenium + nose

I am trying to run the functional tests in parallel with multiprocess plugin which gives me random TimeoutException sometimes my tests are really simple, each of them just goes to a webpage and check ...
1
vote
1answer
151 views

Twisted unit tests run via nose?

Our Python code base uses nose to run all unit tests, and I'm trying to use nose.twistedtools to make all the tests run, but they're all hanging at shutdown. Any help straightening this out would be ...
0
votes
3answers
95 views

Print the test type in Python Nose

I am using Python Nose and would like to print the type of the test ran, like whether it is a Doctest or unittest or so? How can this be done? Thanks.
0
votes
1answer
145 views

Error on running transaction with multiple entity groups through nosetests

I am building an application with Python 2.7 using the Google App Engine framework. To test my application I have a several tests that are run through nosetests making use of the nosegae plugin. I run ...
2
votes
1answer
180 views

Formatting nosetest output in Python

I am using the nosetests and have my directory structure as follows repo package1 sub1 tests test1.py test2.py package2 ...
1
vote
1answer
259 views

In PyCharm, I have an unresolved reference when calling nose.tools.assert_equals?

When I try to use pycharm with nose, I get red underlines with "unresolved reference" when calling assert_raises. I'm using a virtualenv interpreter, but nose is installed and can be run from ipython. ...
1
vote
1answer
384 views

How can I define one setup function for all nosetests tests?

I'm using google app engine with python and want to run some tests using nosetest. I want each test to run the same setup function. I have already a lot of tests, so I don't want to go through them ...
0
votes
1answer
225 views

Can't import logging.handlers inside a nose test

I'm writing a basic test with nose to call a single function from a logging wrapper, but once I got the test to be discovered I started getting standard library module import errors. This is code I'm ...
0
votes
2answers
77 views

App Engine Unit Testing with nosetests gae issue

I've been unit testing my application using nosetests with the with-gae plugin. However, I've wrapped many of my get/post handlers with decorators that check certain items in the datastore and put ...
2
votes
0answers
92 views

nosetest Ran 0 test on pandas

I try to follow pandas documentation. Installed it on Ubuntu 10.4 but when run nose test got result 0 test ~$ nosetests pandas ---------------------------------------------------------------------- ...
1
vote
1answer
417 views

Getting TimeoutError with SqlAlchemy

Update: just figured out that echo_pool=True only shows major events, using echo_pool="debug" instead. I have to explicitly close the engine connection, otherwise I get a TimeoutError: QueuePool ...
0
votes
2answers
50 views

'nosetests' was unable to collect test files from directory

I am having a hierarchy of directories and inside every directory there is one 'test/' directory which has all the test files. nosetests is not able to collect these test files somehow. I have ...
2
votes
1answer
369 views

'nosetests' not recognized on Windows after being installed and added to PATH

I'm on exercise 46 of Learn Python the Hard Way, and I'm meant to install nose and run nosetests. I've installed nose already using pip, but when I run nosetests in the directory above the 'tests' ...
2
votes
0answers
73 views

nosetest - get list of failed tests (without extra output)

Is it possible to have nose output only the name of the tests that fail to get a simple and compact list of failed tests? I have figured out how to discard the captured stdout: nosetests -s but ...
4
votes
0answers
106 views

How to use cProfile with nosetest --with-profile?

nosetest --with-profile --profile-stats-file output The output can't read by runsnake, because nosetest uses hotshot, if I want to generate a file that can be read with runsnake, I need to ...
2
votes
1answer
173 views

Is there a plugin for pylint and pyflakes for nose tests?

I wonder if there is a nose plugin for pylint and/or pyflakes? Currently I am using coverage and tissue (PEP8) plugins for nose tests. Tnx in advance
2
votes
1answer
122 views

Using nosetests with distutils2

I am trying to use nosetests as part of my building/publishing chain, which is based on distutils2 (using the setup.cfg file instead of the "legacy" setup.py script). Unluckily, when I issue: ...

1 2 3 4