On Tue, Mar 1, 2016 at 10:30 AM Bryan Berry <[email protected]> wrote:
> 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? > `pytest_plugins` accepts a list, so in this case is just a matter of: ``` # conftest.py pytest_plugins = ['product_a', 'product_b'] ``` Cheers, Bruno.
_______________________________________________ pytest-dev mailing list [email protected] https://mail.python.org/mailman/listinfo/pytest-dev
