File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ before_install:
1818 - docker run ${DOCKER_OPTS} ${DOCKER_CNTR} r -p -e 'sessionInfo()'
1919
2020install :
21- # Rcpp test runner can be forced to run more tests via this variable
22- - echo 'RunAllRcppTests="yes"' > ~/.Renviron
23- #
2421 - docker run ${DOCKER_OPTS} ${DOCKER_CNTR} R CMD build ${R_BLD_CHK_OPTS} .
2522
2623script :
Original file line number Diff line number Diff line change 1+ 2018-09-26 Dirk Eddelbuettel <
[email protected] >
2+
3+ * docker/ci/Dockerfile: Set env var RunAllRcppTests=yes
4+ * .travis.yml: Do not set env var here as needed in Docker
5+
162018-09-21 Dirk Eddelbuettel <
[email protected] >
27
38 * DESCRIPTION: Release 0.12.19
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ RUN apt-get update \
2121 git \
2222 && install.r rbenchmark pinp covr \
2323 && mkdir ~ /.R \
24- && echo _R_CHECK_FORCE_SUGGESTS_=FALSE > ~ /.R/check.Renviron
24+ && echo _R_CHECK_FORCE_SUGGESTS_=FALSE > ~ /.R/check.Renviron \
25+ && echo RunAllRcppTests=yes >> ~ /.R/check.Renviron
2526
2627CMD [" bash" ]
You can’t perform that action at this time.
0 commit comments