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
during the Debian packaging, I have this warning message.
Is it normal ?
this does not fail but I am wondering if something is not register correctly in pytest.
sorry if this is just noise.
Frederic
tests/test_regression_images.py:149
/tmp/autopkgtest.VncXnP/autopkgtest_tmp/tests/test_regression_images.py:149: PytestUnknownMarkWarning: Unknown pytest.mark.regression - is this a typo? You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/how-to/mark.html
@pytest.mark.regression
tests/test_regression_images.py:196
/tmp/autopkgtest.VncXnP/autopkgtest_tmp/tests/test_regression_images.py:196: PytestUnknownMarkWarning: Unknown pytest.mark.regression - is this a typo? You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/how-to/mark.html
@pytest.mark.regression
tests/test_regression_images.py:300
/tmp/autopkgtest.VncXnP/autopkgtest_tmp/tests/test_regression_images.py:300: PytestUnknownMarkWarning: Unknown pytest.mark.regression - is this a typo? You can register custom marks to avoid this warning - for details, see https://docs.pytest.org/en/stable/how-to/mark.html
@pytest.mark.regression
I use this script in order to run the test
set -efu
pythons=$(py3versions -r 2>/dev/null)
cp -r dxtbx/tests dxtbx/conftest.py "$AUTOPKGTEST_TMP"
cd "$AUTOPKGTEST_TMP"
for py in $pythons; do
echo "Testing dxtbx with $py:"
$py -m pytest \
--ignore tests/command_line/test_dlsnxs2cbf.py \
--ignore tests/format/test_FormatNXmx.py \
--ignore tests/format/test_FormatNXmxDLS.py \
--ignore tests/format/test_FormatNXmxDLS16M.py \
--ignore tests/format/test_FormatNXmxDLS16MI03.py \
--ignore tests/nexus/test_build_dxtbx_models.py
done
The text was updated successfully, but these errors were encountered:
Hello,
during the Debian packaging, I have this warning message.
Is it normal ?
this does not fail but I am wondering if something is not register correctly in pytest.
sorry if this is just noise.
Frederic
I use this script in order to run the test
The text was updated successfully, but these errors were encountered: