Skip to content

Commit 3351beb

Browse files
committed
RunAllRcppTests=yes must be set inside Docker container
1 parent 72de32d commit 3351beb

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

.travis.yml

-3
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@ before_install:
1818
- docker run ${DOCKER_OPTS} ${DOCKER_CNTR} r -p -e 'sessionInfo()'
1919

2020
install:
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

2623
script:

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
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+
16
2018-09-21 Dirk Eddelbuettel <[email protected]>
27

38
* DESCRIPTION: Release 0.12.19

docker/ci/Dockerfile

+2-1
Original file line numberDiff line numberDiff 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

2627
CMD ["bash"]

0 commit comments

Comments
 (0)