Tagged Questions
0
votes
0answers
15 views
Combining fixtures and paramatrization in pytest
Basically I'm trying to do something like this:
from pytest import *
@fixture()
def tmpfile():
return '_test_{0:010}.h5'.format(randint(1, 10**10))
@mark.parametrize('t', 'x', 'r', 'w')
def ...
2
votes
2answers
46 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
0answers
94 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 ...