File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -18,9 +18,6 @@ before_install:
18
18
- docker run ${DOCKER_OPTS} ${DOCKER_CNTR} r -p -e 'sessionInfo()'
19
19
20
20
install :
21
- # Rcpp test runner can be forced to run more tests via this variable
22
- - echo 'RunAllRcppTests="yes"' > ~/.Renviron
23
- #
24
21
- docker run ${DOCKER_OPTS} ${DOCKER_CNTR} R CMD build ${R_BLD_CHK_OPTS} .
25
22
26
23
script :
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
+
1
6
2018-09-21 Dirk Eddelbuettel <
[email protected] >
2
7
3
8
* DESCRIPTION: Release 0.12.19
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ RUN apt-get update \
21
21
git \
22
22
&& install.r rbenchmark pinp covr \
23
23
&& 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
25
26
26
27
CMD [" bash" ]
You can’t perform that action at this time.
0 commit comments