-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Disabling entry points from dependencies #495
Comments
Hmm, this is tricky. I did not consider this when using entry points. I think it would be more ideal if the API were to register with a pytest fixture in your @pytest.fixture(scope="module", autouse=True)
def reseed_alibi(randomly_register):
randomly_register(set_seed)
yield Or maybe it can be done without fixtures: import pytest_randomly
pytest_randomly.register(set_seed) Either way, custom reseed functions wouldn't be declared in This would also work for non-installable projects, like most Django projects. WDYT? |
I wonder if the first option might be nicer than the second, in that it would give a little more control over managing the scope of the custom However, I can also imagine that sometimes a user might actually want a custom seeder defined in a 3rd party dependency to be available (it is also quite nice and convenient to define via an entry point IMO). To me the problem is that currently these are pulled in and run by default, with no option to turn off. One idea would be what I hacked together in #497 (please feel free to delete!). Essentially adding a new |
@adamchainz any thoughts on the above? |
Python Version
3.8.11
pytest Version
7.1.3
Package Version
3.12.0
Description
For our package alibi detect, we've defined a pytest-randomly entry point in our
setup.cfg
:One of our dependencies (thinc), also defines an entry point:
We don't need thinc's random seeder on our tests, however, it appears to be pulled in automatically and causes our tests to fail. My understanding was that
pytest
would only pay attention to whichever entry point was defined first, however I have tried to change the order of our pip installs to no avail. Is there a strategy to handle such a situation?The text was updated successfully, but these errors were encountered: