The tag has no wiki summary.

learn more… | top users | synonyms

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, ...
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
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 ...
2
votes
0answers
25 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
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
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
12 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
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
16 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
42 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
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: ...