Re: [py-dev] xdist and pytest.main

2012-08-09 Thread holger krekel
On Sun, Aug 05, 2012 at 17:31 -0400, Adam Goucher wrote: Whoops. Didn't look at the list reply-to settings so pulling the list back in. This does seem to be the cause. I commented out the sys.path.append in the wrapper and added def pytest_configure(config):

Re: [py-dev] xdist and pytest.main

2012-08-05 Thread Adam Goucher
Whoops. Didn't look at the list reply-to settings so pulling the list back in. This does seem to be the cause. I commented out the sys.path.append in the wrapper and added def pytest_configure(config): sys.path.append(os.path.join(os.getcwd(), modules)) to the conftest.py in the root and

Re: [py-dev] xdist and pytest.main

2012-08-02 Thread holger krekel
Hi Adam, On Thu, Aug 02, 2012 at 14:49 -0400, Adam Goucher wrote: I have a WebDriver framework that wraps Py.Test and after a bunch of setup stuff calls into things with run_status = pytest.main(args=arguments, plugins=[marks.MarksDecorator()]) which works fine for a single execution.