We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
__init__.py
Case in point: scipy.fftpack.convolve namespace. It comes from a standalone Cython source, https://github.com/scipy/scipy/blob/main/scipy/fftpack/meson.build#L1, and its contents is not included into scipy.fftpack namespace, https://github.com/scipy/scipy/blob/main/scipy/fftpack/__init__.py
scipy.fftpack.convolve
scipy.fftpack namespace
The text was updated successfully, but these errors were encountered:
The fix is probably to implement pytest_collect_file: the vanilla doctest version only looks into *py files: https://github.com/pytest-dev/pytest/blob/8.0.x/src/_pytest/doctest.py#L127
pytest_collect_file
*py
cross-ref #99 (comment) for links to upstream pytest discussions.
Sorry, something went wrong.
pytest_collection_modify
No branches or pull requests
Case in point:
scipy.fftpack.convolve
namespace. It comes from a standalone Cython source, https://github.com/scipy/scipy/blob/main/scipy/fftpack/meson.build#L1, and its contents is not included intoscipy.fftpack namespace
, https://github.com/scipy/scipy/blob/main/scipy/fftpack/__init__.pyThe text was updated successfully, but these errors were encountered: