The pytest tag has no wiki summary.
2
votes
2answers
36 views
How to monkeypatch builtin function datetime.datetime.now?
I'd like to make sure that datetime.datetime.now() returns a specific datetime for testing purposes, How do I do this? I've tried with pytest's monkeypatch
...
2
votes
2answers
40 views
execute several times a test with pytest
Is there a way to run a test x times with py.test?
What I'm looking for it's to repeat a test several times, because the tests has random fixtures.
Something like py.test -n100
I've been playing ...
2
votes
0answers
24 views
Solving the confusion generated by too many ways to run unittest in python
I am trying to implement a full and clean way of testing python packages, one that would suit the folowing requirements:
execute tests on clean machines without setting them up (virtualenv)
gather ...
2
votes
0answers
27 views
pytest not skipping unmarked tests
We have a marked test that we expect to be not executed because py.test was invoked with another marker, yet the test is getting executed.
e.g.
@pytest.mark.stress
def test_one(some_fixture):
...
2
votes
0answers
89 views
Debugging pytest post mortem exceptions in pycharm/pydev
I would like to use the built in pytest runner of pycharm together with the debugger without pre-configuring breakpoints.
The problem is that exceptions in my test are caught by pytest so pycharm's ...
1
vote
2answers
97 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 ...
1
vote
2answers
101 views
Pytest and Python 3
I've installed pytest 2.3.4 under Debian Linux. By default it runs under Python 2.7, but sometimes I'd like to run it under Python 3.x, which is also installed. I can't seem to find any instructions ...
1
vote
2answers
104 views
Can params passed to pytest fixture be passed in as a variable?
I have two simple test setups and I'm trying to group them in one fixture
and want the test function to pass in the 'params' to the fixture.
Here's a contrived example, to explain my question.
Say I ...
1
vote
1answer
104 views
How to I configure tox so it will run pytest coverage on a single environment instead of all?
I do have a complex tox.ini configuration with multiple environments for different versions of python.
I would like to know how to tell tox to run coverage only on the default python interpretor.
...
1
vote
1answer
153 views
pytest.raises(AssertionError) fails with cython modules
Define the files python_assert.py and cython_assert.pyx to be identical, each containing a simple function that raises AssertionError:
def raise_assertionerror():
assert False
I would expect ...
1
vote
1answer
27 views
How to execute ipdb.set_trace() at will while running pytest tests
I'm using pytest for my test suite. While catching bugs in complex inter-components test, I would like to place import ipdb; ipdb.set_trace() in the middle of my code to allow me to debug it.
...
1
vote
1answer
64 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, ...
1
vote
0answers
61 views
Could I print “current line and statement” to stdout in pytest?
Could I print "current line and statement" to stdout in pytest?
I want to modify pytest files to achieve the following:
line 9: snmp_get(node1.1)
line 10: snmp_set(nod1.2)
Anyone can tell me where ...
0
votes
1answer
63 views
Unable to exit with ^C
I am using pytest to run tests and, during the execution of a test, interrupted with ctrl-C.
No matter how many times I ctrl-C to get out of the test session (I've also tried ctrl-D to get out of ...
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 ...
0
votes
1answer
85 views
How can I see normal print output created during pytest run?
Sometimes I want to just insert some print statements in my code, and see what gets printed out when I exercise it. My usual way to "exercise" it is with existing pytest tests. But when I run these, I ...
0
votes
1answer
55 views
simplest way of parameterizing tests in python?
I have a library with a bunch of different objects that have similar expected behavior, thus I want to run similar tests on them, but not necessarily identical tests on them.
To be specific lets say ...
0
votes
1answer
73 views
Best practice for starting/stopping daemons as part of a unittest (using pytest)
Functional testing of code often requires external resources like e.g. a database.
There are basically two approaches:
assuming that a resource (e.g. database) is always running and is always ...
0
votes
0answers
16 views
Appengine datastore raising badValueErro on datetime, might be caused by monkeypatch
I'm getting the following error message:
BadValueError: Expected datetime, got datetime.datetime(2013, 4, 19, 19, 48, 2, 566558)
The error is raised in ndb's model.py line 1190, here's a snippet of ...
0
votes
0answers
10 views
inspect.getsource() and __file__ both don't work with pytest?
When I use either of these:
inspect.getsource(someObj)
or
__file__
These two work fine without pytest, but fail when the same code is run with pytest. Any ideas?
Thanks!
0
votes
1answer
16 views
How do I use test resources (like a fixed yaml file) with pytest?
I've looked around the docs on the pytest website, but haven't found a clear example of working with 'test resources', such as reading in fixed files during unit tests. Something similar to what ...
0
votes
1answer
26 views
Mutually exclusive fixtures?
I have two mutually exclusive data fixtures, each required by a different test:
@pytest.fixture(scope='session')
def testdata1(request, conn):
savepoint = conn.begin_nested()
...
0
votes
0answers
10 views
pytest test needs parametrization at collection phase and at setup time
I have some tests which I'd like to parametrize using some arguments which need the parametrization to happen during collection phase and some which need it to happen at setup time. I'm unable to use
...
0
votes
0answers
15 views
Is pytest_runtest_teardown called in the wrong order?
The order of when pytest_runtest_teardown() hook gets called seems to be wrong to me.
But perhaps I don't understand the specification.
Sample code placed in two files in subdirectory 'a'.
...
0
votes
0answers
29 views
Python tox error “plugin already registered”
I'm trying to run a test-suite with tox for some work I'm doing on the jedi autocomplete library and I'm getting the following:
ValueError: Plugin already registered: ...
0
votes
0answers
41 views
Controlling the distribution of tests with py.test xdist
I have several thousand tests that I want to run in parallel. The tests are all compiled binaries that give a return code of 0 or non-zero (on failure). Some unknown subsets of them try to use the ...
0
votes
1answer
25 views
Stop pytest after X consecutive fails
Currently pytest has the --maxfail=X flag that stops the whole system after X total fails.
Could someone tell me how I could do the same but instead of total fails, it be X consecutive fails?
...
0
votes
1answer
53 views
using pytest.raises to catch expected custom error
I am new to pytest and am trying to convert some functional test scripts into ones that play nicely with pytest. My module has custom error types and I'm trying to use the "with pytest.raises() as ...
0
votes
1answer
23 views
Implementing a selected unix path for a specific application (e.g. pytest)
I have two versions of pytest installed, one locally in a directory in my home directory, and one that is installed in /usr/local/bin.
The version of pytest installed in the /usr/local/bin is 2.2.4 ...
0
votes
0answers
53 views
pytest xdist plugin with --capture=no
Is there any way to use --capture=no parameter along with xdist plugin? I'm using py.test with xdist plugin to parallel my webdriver tests execution with -n NUM parameter.
Tests are something like:
...
0
votes
1answer
49 views
How to get test name and test result during run time in pytest
I want to get the test name and test result during runtime.
i have setup and tearDown methods in my script.
and in setup method i need to get the test name and in tearDown i need to get the test ...
0
votes
1answer
62 views
Py.Test silently skips tests with errors in them using PyDev/Eclipse?
I've been looking in to using Py.Test to automate unit testing in some code I've been working on. I've discovered the following behavior: when a test that I've built has an error (that would otherwise ...
