jorisvandenbossche commented on code in PR #40487:
URL: https://github.com/apache/arrow/pull/40487#discussion_r1530081891
##########
docker-compose.yml:
##########
@@ -1208,15 +1208,13 @@ services:
LANG: "C.UTF-8"
BUILD_DOCS_CPP: "ON"
BUILD_DOCS_PYTHON: "ON"
- # GH-31506/GH-33609: Remove --disable-warnings once
- # https://github.com/lgpage/pytest-cython/issues/24 is resolved
- # and a new version that includes the fix is released.
- PYTEST_ARGS: "--doctest-modules --doctest-cython --disable-warnings"
+ PYTEST_ARGS: "--doctest-modules --doctest-cython"
volumes: *conda-volumes
command:
["/arrow/ci/scripts/cpp_build.sh /arrow /build &&
/arrow/ci/scripts/python_build.sh /arrow /build &&
pip install -e /arrow/dev/archery[numpydoc] &&
+ pip install pytest<8 &&
Review Comment:
You probably have to escape the double quotes, because it is already
contained in a string delimited by double quotes
(that said, you could also do `~=7` instead to avoid the issue with `<`)
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]