Tagged Questions

py.test is a mature, fully featured testing tool that simplifies the testing experience, which: Provides no-boilerplate testing. Supports functional testing and complex test setups. Integrates many common testing methods. Offers extensive plugin and customization system. Be sure to check the ...

learn more… | top users | synonyms

68
votes
10answers
12k views

Preferred Python unit-testing framework

So far I've been using the built-in unittest module for unit-testing Python code. However, for simple cases it seems like overkill. Being a derivative of xUnit, it appears a bit heavy for the dynamic ...
5
votes
1answer
213 views

generating py.test tests in python

Question first, then an explanation if you're interested. In the context of py.test, how do I generate a large set of test functions from a small set of test-function templates? Something like: ...
5
votes
1answer
215 views

Projects using py.test

I am looking for (list of) projects that use py.test. I am new to testing, and want to use py.test. I need examples from projects, so i can use py.test extensively. The documentation is good for ...
4
votes
1answer
368 views

Logging within py.test tests

I would like to put some logging statements within test function to examine few state variables. I have the following code snippet: import pytest,os import logging ...
4
votes
1answer
267 views

Running py.test from emacs

What I would like if for C-c C-c to run py.test and display the output in the other buffer if the name of the file being edited begins with test_ and to normally run py-execute-buffer otherwise. How ...
3
votes
2answers
367 views

How do I configure PyCharm to run py.test tests?

I want to start writing unit tests for my Python code, and the py.test framework sounds like a better bet than Python's bundled unittest. So I added a "tests" directory to my project, and added ...
3
votes
1answer
174 views

py.test how to run a method before every test

I used unittest and nose for unit-testing in Python but now I'm using py.test. unittest and nose always call class.setUp before executing every method in the TestCase. How can I do this with ...
3
votes
2answers
101 views

py.test with non-python tests (specifically, with cxxtest)

I work with a team that develops MPI-based C++ numerical applications. The group uses cxxtest for constructing individual unit tests or small suites, but 1) there are some complications aggregating ...
3
votes
3answers
478 views

How to make py.test or nose to look for tests inside all python files?

I do have several small modules where the tests are inside them and py.test or nose does not look for them because they do not contain test in their filename. How can I convince py.test or nose to ...
3
votes
2answers
520 views

How to use py.test from Python?

I'm working in a project that recently switched to the py.test unittest framework. I was used to call my tests from Eclipse, so that I can use the debugger (e.g. placing breakpoints to analyze how a ...
2
votes
2answers
25 views

How to run py.test against different versions of python?

Is it possible to run py.test with different versions of python without plugins (like xdist) or tox?
2
votes
2answers
57 views

Pytest: Deselecting tests

With pytest, one can mark tests using a decorator @pytest.mark.slow def some_slow_test(): pass Then, from the command line, one can tell pytest to skip the tests marked "slow" pytest -k-slow ...
2
votes
1answer
84 views

Running python unit test over LSF

I need to parallelize my python unit-tests which I wrote using the default unittest module. I'm trying to decide between two approaches: keep using unittest but use a custom 'multiprocess' runner ...
2
votes
3answers
180 views

How can I combine stdlib logging with py.test

I am using py.test to test some modules of mine that contains quite a bit of stdlib logging. I would of course like for the logging to log to stdout, which is captured by py.test, so that I will get ...
2
votes
1answer
135 views

Is there a way to control how pytest-xdist runs tests in parallel?

I have the following directory layout: runner.py lib/ tests/ testsuite1/ testsuite1.py testsuite2/ testsuite2.py testsuite3/ ...
2
votes
3answers
160 views

How to accumulate state across tests in py.test

I currently have a project and tests similar to these. class mylib: @classmethod def get_a(cls): return 'a' @classmethod def convert_a_to_b(cls, a): return 'b' ...
1
vote
2answers
123 views

pytest: assert almost equal

How to do assert almost equal with py.test for floats without resorting to something like: assert x - 0.00001 <= y <= x + 0.00001 UPD. More specifically it will be useful to know a neat ...
1
vote
1answer
100 views

Render JUnit-style XML test output to HTML

I'm doing some Unit/Integration testing in a Non-Java language (Python), using a test-framework (py.test) which is able to produce JUnit-style XML output, for example like this: <?xml ...
1
vote
2answers
82 views

Py.test - Session based setup

I'm trying to build a nice base around py.test Some of our tests needs certain test data to work. Today we just specify a mock object as a function argument and do the setup in the generator, this ...
1
vote
1answer
31 views

How common set up and clear down jobs are performed in py.test?

Python's unittest has a handy way to perform common set up and clear down jobs by grouping the relevant functions into a class that inherits unittest.TestCase and providing setUp and tearDown ...
1
vote
2answers
179 views

py.test use monkeypatch in custom funcargs

I use py.test and really like the funcarg approach to inject objects into test functions. In my testing I need to work with Mock objects, as I have a lot external dependencies. I use monkeypatch to ...
1
vote
1answer
75 views

Possible to use unittest-like fixtures in py.test?

I really like py.test, but I am having lots of difficulty understanding how funcargs work. Is it possible to use a command line argument or an extension to enable the use of something that performs ...
0
votes
0answers
11 views

show current line with TextMate + pytest.set_trace()

I'm using PdbTextMateSupport with TextMate, installed according to its instructions. It all works as advertised when my code contains pdb.set_trace(). However, it doesn't do anything when my code ...
0
votes
1answer
89 views

KeyError in module 'threading' after a successful py.test run

I'm running a set of tests with py.test. They pass. Yippie! But I'm getting this message: Exception KeyError: KeyError(4427427920,) in <module 'threading' from ...
0
votes
2answers
252 views

`py.test` and `__init__.py` files

I thought py.test is "standalone" in a sense that it treats test_*.py files "as it is", and only imports modules specified in these files, with no respect to any surrounding files. It looks like I'm ...
0
votes
3answers
129 views

unit testing Python objects with pytest

I've a method that returns a list of objects that meet certain criteria result = find_objects(some_criteria) print("%r" % result) >> [<my_object.my_object object at 0x85abbcc>] I would ...
0
votes
1answer
74 views

Turbogears2 and py.test

I'm switching our testing environment from Nose to py.test for testing a Turbogears2 web application. Currently, when Nose runs it gathers information from a testing configuration file (test.ini) ...
0
votes
1answer
225 views

Having trouble with py.test remote

I love py.test and am trying to get the remote test execution feature to work so I can run tests on a remote machine. There is very little doc and I am getting frustrated with it. Any help figuring ...