<div dir="ltr"><div class="gmail_quote"><div dir="ltr">On Tue, Mar 1, 2016 at 10:30 AM Bryan Berry <<a href="mailto:bryan.berry@gmail.com">bryan.berry@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">Hi Bruno, I already successfully use that approach from one fixtures package. However, I want to add command-line options from one or more fixtures packages. Say i use ProductAFixture library that adds a command-line option and ProductBFixture that also adds a command-line option. How can i take advantage of both?<br></div></blockquote><div><br></div><div>`pytest_plugins` accepts a list, so in this case is just a matter of:</div><div><br></div><div>```</div><div># conftest.py</div><div>pytest_plugins = ['product_a', 'product_b'] </div><div>``` </div><div><br></div><div>Cheers,</div><div>Bruno.</div></div></div>