pytest: simple powerful no-boilerplate testing with Python

learn more… | top users | synonyms

1
vote
1answer
10 views

Flask-WTForms testing (with py.test)

I am building an application using flask and flask-wtforms, and i was writing a test for my login form. I am doing it like this: with app.test_client() as c: c.post('/login', ...
1
vote
0answers
28 views

How to speed up py.test

Is there some way to speed up the repeated execution of py.test? It seems to spend a lot of time collecting tests, even if I specify which files to execute on the command line. I know it isn't a disk ...
3
votes
2answers
87 views

Using py.test with coverage doesn't include imports

For Jedi we want to generate our test coverage. There is a related question in stackoverflow, but it didn't help. We're using py.test as a test runner. However, we are unable to add the imports and ...
1
vote
1answer
27 views

Should pytest.main('-s') run tests twice?

I've only just started learning about testing, and so I'm just starting out by trying to put together and run some very simple unit tests using py.test. Example test_script.py: import pytest def ...
1
vote
1answer
14 views

How can I select multiple tests on py.test?

I'm familiar with the command py.test -k string for select all tests that contains the string in their name and run it. What I want is to select tests with more than one string parameter like an OR ...
0
votes
0answers
48 views

How to access the py.test capsys from inside a test?

py.test documentations says that I should add capsys parameter to my test methods but in my case this doesn't seem to be possible. class testAll(unittest.TestCase): def setUp(self): self.cwd = ...
1
vote
0answers
80 views

PyDev running pytest unit test with module-shared fixture fails

I have a problem running pytest unit tests with pyDev. I try to run a unit test with a module shared fixture and a fenializer which should be excecuted after the last test. But when running the unit ...
2
votes
1answer
45 views

py.test - how to use a context manager in a funcarg/fixture

Closely related: In python, is there a good idiom for using context managers in setup/teardown I have a context manager that is used in tests to fix the time/timezone. I want to have it in a pytest ...
1
vote
1answer
51 views

Unable to run py.test from command line when using a marker and text fixture option

I set up the fixture like this: def pytest_addoption(parser): parser.addoption('--env', action='store', default='qa', help='Specify environment: "qa", "aws", "prod".') ...
1
vote
1answer
67 views

running a test suite (an arbitrary collection of tests) with py.test

I'm using py.test to build functional test framework, so I need to be able to specify the exact tests to be run. I understand the beauty of dynamic test collection, but I want to be able to run my ...
0
votes
1answer
27 views

How to tell py.test to install required modules?

I am using py.test to run the tests but it may fail to run because it fails to collect the tests due to missing dependency modules. I have to mention that my setup.py already contains these modules: ...
1
vote
1answer
66 views

How to organize fixtures when using pytest

Fixtures tend to be small and reusable. Given that a specific fixture can rely on other fixtures @pytest.fixture def Account(db, memcache): ... I would like to organize my fixtures in modules, ...
2
votes
4answers
197 views

Django py.test does not find settings module

I do have the following project structure base __init.py settings __init__.py settings.py tests pytest.ini test_module.py My pytest.ini looks like this: ...
2
votes
1answer
48 views

Calling and gathering results from py.test from within code

I'm working on a system that needs to be able to test python files with py.test, and use the output (what tests passed and failed) within the program. Is there anyway to call py.test from within ...
0
votes
1answer
59 views

py.test run tests in specific testSuite

I'm new to py.test. So far I like what I see and want to integrate it to our CI process. Currently we use a different kind of parameterization scheme for our tests which I will explain briefly: ...
1
vote
1answer
78 views

Monkeypatching views with Django's LiveServerTestCase

I'm attempting to write tests for the frontend behavior of my application, using Selenium. However, the pages I'm attempting to test get their data from Solr, and I don't want to spin up a Solr ...
0
votes
1answer
58 views

Py.test loop through the tests repeatedly

I'm trying to repeat the tests N number of times (same tests that are collected). Why: By doing do I want to see if the speed of the tests decreases or I can collect the "average time" of one ...
0
votes
1answer
45 views

Reference cycle when using funcarg factory in Py.Test

Consider the following dummy Resource class: import pytest class Resource: def __init__(self, param): self.param = param print "\nResource created", self.param, self def ...
1
vote
1answer
115 views

Teamcity pytest plugin & unit test reporting

We have recently moved away from our custom test runner / discovery tool in favor of py.test. For proper unit test reporting when running under teamcity there exists a pytest plugin: ...
1
vote
1answer
64 views

Using different database with pytest

I am using to run tests for my django application pytest with pytest-django plugin. I use MySQL database as a default one for django. Is there possiblity to specify just for pytest to use different ...
2
votes
1answer
41 views

py.test “--collectonly doesn't respect -k” issue is not fixed?

I have encountered the problem described in this py.test problem report: https://bitbucket.org/hpk42/pytest/issue/27/collectonly-doesnt-respect-k These are the results from the Jenkins console: ...
0
votes
1answer
181 views

py.test SetUp/TearDown for whole test suite

I have a Python package that needs access to X11. I want to use Xvfb so that I do not have to have a real X11 installed on the build machines -- Hudson in this case. So, I would like to start a Xvfb ...
0
votes
0answers
59 views

py.test cyclomatic complexity plugin

Does anyone know if there is a cyclomatic complexity plugin for py.test?
0
votes
1answer
135 views

How to configure pycharm / intellij idea to run tox tests

Is it possible to configure pycharm / intellij idea to run tox tests? I want to test my code against different python versions in separated py environments. I was trying to configure it, but so far I ...
3
votes
2answers
158 views

py.test doesn't collect tests that are not inherited from 'object'

I'm trying to create Base class with different setups I need for my tests. I want all my tests to be inherited from this Base class. As runner I use py.test. But when I'm trying to do so, py.test ...
1
vote
1answer
83 views

How to collect my tests with py.test?

I try to collect my tests with py.test but it doesn't do so. Do I have to provide additional options at the command line? Py.test was executed in the directory of my .py-file. Are there any other ...
1
vote
2answers
98 views

Is it possible not collect marked test?

Currently, it is possible to mark tests and then run them (or not run them) using -m argument. However, all tests are still collected first and only then are deselected In the below example all 8 are ...
2
votes
2answers
99 views

Is it possible to use py.test fixtures in doctest files?

We use py.test in a project and use fixtures for most test cases. But I see no possibility to use fixtures in doctest files. To give an example with some code snippets: I have a browser fixture in ...
1
vote
2answers
201 views

How and where does py.test find fixtures

Where and how does py.test look for fixtures? I have the same code in 2 files in the same folder. When I delete conftest.py, cmdopt cannot be found running test_conf.py (also in same ...
0
votes
1answer
192 views

pytest and coverage combination does not work

I installed plugin for pytest from here:http://pypi.python.org/pypi/pytest-cov. Then I have a simple test code: pytest.py: class TestNumbers: def test_int_float(self): assert 1 == 1.0 ...
1
vote
2answers
62 views

Pytest: deactivate django plugin for some tests

I'm running some test for Django, and some other test for the web-site using Selenium. My choice of Testing framework is amazing Pytest. for testing Django I've currently installed pytest-django ...
1
vote
1answer
74 views

Scons running py.test in different subdirectories

We have a large repository containing several Python packages(*). I want scons to run py.test in each of the sub directories and not from the project root. This is proving rather frustrating. ...
1
vote
1answer
154 views

In pytest, how can I access the parameters passed to a test?

In pytest, I can pass parameters to test (using fixtures or the decorator @pytest.fixture(params=list-of-params)). When the tests are done, if a test fails, the parameter that was passed is shown on ...
1
vote
1answer
41 views

How to I display why some tests where skipped while using py.test?

I am using skipIf() from unittest for skipping tests in certain conditions. @unittest.skipIf(condition), "this is why I skipped them!") How do I tell py.test to display skipping conditions? I ...
2
votes
2answers
163 views

py.test: how to automatically detect an exception in a child process?

I'm running py.test on Linux in the context of a module that makes heavy usage of multiprocessing. Exceptions in child processes are not detected as an error. Example test file pytest_mp_test.py: ...
2
votes
4answers
191 views

How to Run Py.test in PyScripter

I am a newbie to py.test , Please let me know how to run the py.test in PyScripter Editor. I have tried in the belwo way but it doesn't work. import pytest def func(x): return x + 1 def ...
1
vote
1answer
65 views

In pytest, how can I figure out if a test failed? (from “request”)

I'm using Selenium with PYTEST to test a site. I would like to take a screenshot of the page whenever a test fails (and only when it fails). Is there a way that I can do this? The docs are quiet ...
4
votes
3answers
131 views

Python/tox, start a process before tests, shut it down when done

I'm using Tox to check that the system I'm developing is behaving well when installed in a fresh environment (+ sanity checking the setup.py file). However, the system uses a memcached server, and ...
2
votes
1answer
60 views

Can py.test support multiple -k options?

Can py.test supports multiple -k options? Each testcase belongs to a particular group such as _eventnotification or _interface, etc. Is it possible to run test cases that belong to either one or both ...
2
votes
2answers
152 views

Can't get pytest to understand command-line arguments on setups

So I have been trying to get pytest to run selenium tests on different environments based on some command-line argument. But it keeps throwing this error: TypeError: setup_class() takes exactly 2 ...
1
vote
1answer
81 views

Package-scoped fixtures in pytest 2.3

In the latest release of pytest, it is easy to create fixtures that are function, class, module or session-scoped like this: @pytest.fixture(scope="module") def db(): return DB() That creates ...
3
votes
2answers
131 views

Using pytest with Jython

I'm trying to use pytest on Jython. And I'm getting stuck right at the beginning. I've successfully installed the pytest package with easy_install: $ ./jython easy_install pytest When I try to run ...
2
votes
1answer
79 views

Where can I find captured stdout for a py.test test that passes?

I am using the py.test reporting hooks (pytest_runtest_makereport() and pytest_report_teststatus()). When a py.test test fails, I can find the captured stdout data in the report hook (at ...
1
vote
2answers
121 views

How do I install py.test-2.3?

I know this sounds strange but I can't get it. Here (http://pytest.org/dev/getting-started.html) it says that a simple pip install pytest would work, but that only installs pytest-2.2.4 I tried ...
1
vote
1answer
112 views

pytest: Using dependency injection with decorators

At work we use a decorator @rollback on selected test functions which will rollback any db changes made during that test. I've recently started using pytest's dependency injection for a few use ...
1
vote
1answer
43 views

py.test and norecursedirs granuarity

I have these directories: ./Tools ./ook/Tools. I have added Tools to the norecursedirs options of py.test in setup.cfg. As expected, when py.test gathers tests, ./Tools is not explored. However, ...
1
vote
1answer
109 views

pytest: are pytest_sessionstart() and pytest_sessionfinish() valid hooks?

are pytest_sessionstart(session) and pytest_sessionfinish(session) valid hooks? They are not described in dev hook docs or latest hook docs What is the difference between them and ...
1
vote
2answers
106 views

Test gathering/identification failure.

Using py.test, two test called the same in different directory causes py.test to fail. Why is that? How can I change this without renaming all the tests? To duplicate do: ; cd ...
0
votes
1answer
120 views

Need py.test to log assert errors in log file from python logging module

Need py.test to log assert errors in log file from python logging module. The test has python logging module set up and all logs goes there as expected. I used assert statements through out the ...
1
vote
2answers
261 views

pytest 2.3 adding teardowns within the class

I'm researching new version of pytest (2.3) and getting very excited about the new functionality where you "can precisely control teardown by registering one or multiple teardown functions as ...

1 2 3