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
Sometime around 2024-02-16, dplyr's test regressed in Debian testing. Assistance fixing this, or permission to ignore these two tests would be appreciated.
FROM docker.io/debian:testing-slim
WORKDIR /build
RUN sed -i '\Z/usr/share/doc/Zd' /etc/dpkg/dpkg.cfg.d/docker
# Don't discard the documentation contents when installing, as is the default# when using the this Debian base containerRUN apt-get update && apt-get dist-upgrade -y \
&& apt-get install -y --no-install-recommends \
r-cran-dplyr \
r-cran-bench \
r-cran-broom \
r-cran-callr \
r-cran-covr \
r-cran-dbi \
r-cran-dbplyr \
r-cran-ggplot2 \
r-cran-knitr \
r-cran-lobstr \
r-cran-purrr \
r-cran-rmarkdown \
r-cran-rmysql \
r-cran-rpostgresql \
r-cran-rsqlite \
r-cran-stringi \
r-cran-testthat \
r-cran-tidyr \
r-cran-withr
RUN mkdir /tmp/test
RUN cp -a /usr/share/doc/r-cran-dplyr/tests/* /tmp/test/
WORKDIR /tmp/test
RUN find . -name "*.gz" -exec gunzip \{\}\;# There is no package r-cran-lahman available yetRUN bash -c 'for testfile in testthat/* ; do if grep -q lahman $testfile ; then rm $testfile ; fi ; done'RUN sed -i '/[Ll]ahman/d' testthat.R
RUN LC_ALL=C.UTF-8 R --no-save < testthat.R
The text was updated successfully, but these errors were encountered:
Hello,
Sometime around 2024-02-16, dplyr's test regressed in Debian testing. Assistance fixing this, or permission to ignore these two tests would be appreciated.
The list of installed Debian and R packages is at https://ci.debian.net/packages/r/r-cran-dplyr/testing/amd64/53650839/#L431
Below is a
Dockerfile
that reproduces the error.The text was updated successfully, but these errors were encountered: