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
This occurs only for skipped Astra tests, with pytest==8.3.4 (and not with pytest==7.4.4):
pytest==8.3.4
pytest==7.4.4
________________________________________________________________________________________________________ test_anisotropic_voxels[ geometry='par2d' ] _________________________________________________________________________________________________________ geometry = Parallel2dGeometry( uniform_partition(0.0, 3.142, 100), uniform_partition(-30.0, 30.0, 100) ) def test_anisotropic_voxels(geometry): """Test projection and backprojection with anisotropic voxels.""" ndim = geometry.ndim shape = [10] * (ndim - 1) + [5] space = odl.uniform_discr([-1] * ndim, [1] * ndim, shape=shape, dtype='float32') # If no implementation is available, skip if ndim == 2 and not odl.tomo.ASTRA_AVAILABLE: > pytest.skip(msg='ASTRA not available, skipping 2d test') E TypeError: skip() got an unexpected keyword argument 'msg' pypitest.pyenv/lib/python3.12/site-packages/odl/test/tomo/operators/ray_trafo_test.py:362: TypeError
The text was updated successfully, but these errors were encountered:
Constrain the PyTest version.
db00083
This is a workaround to a very small problem with pytest-8, #1670
Release 0.8.1.
3b3207c
https://github.com/odlgroup/odl/releases/tag/v0.8.1 https://pypi.org/manage/project/odl/release/0.8.1rc0/ The PyTest dependency upper bound is a temporary workaround for odlgroup/odl#1670.
Successfully merging a pull request may close this issue.
This occurs only for skipped Astra tests, with
pytest==8.3.4
(and not withpytest==7.4.4
):The text was updated successfully, but these errors were encountered: