You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to integrate Pylenium into an existing Pytest suite, and I don't want to copy the Pylenium conftest.py into our manually written conftest.py. But also in general, registering a Pytest plugin is much more idiomatic than generating a conftest.py file.
Currently working around this by renaming the file to pylenium_conftest.py and adding pytest_plugins = ["pylenium_conftest"] in conftest.py
The text was updated successfully, but these errors were encountered:
We made this decision early on because users would change a lot of things within the Pylenium fixtures to fit their context. Obviously, we've made a lot of changes and optimizations to those fixtures since then, so it might be time to finally register it.
I'm trying to integrate Pylenium into an existing Pytest suite, and I don't want to copy the Pylenium
conftest.py
into our manually writtenconftest.py
. But also in general, registering a Pytest plugin is much more idiomatic than generating a conftest.py file.Currently working around this by renaming the file to
pylenium_conftest.py
and addingpytest_plugins = ["pylenium_conftest"]
inconftest.py
The text was updated successfully, but these errors were encountered: