Skip to content

Commit af41be0

Browse files
committed
No color and less verbose when running R CMD check
The color and extra verbosity made xts.Rcheck/tests/tinytest.out very impossible to read.
1 parent 128ef18 commit af41be0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,11 +54,13 @@ $(PKG_INST_FILE): $(PKG_TARGZ)
5454
# Run R CMD check
5555
check: build
5656
@_R_CHECK_CRAN_INCOMING_=false \
57-
${R_HOME}/bin/R CMD check ${PKG_TARGZ} --as-cran --no-vignettes
57+
_XTS_TINYTEST_VERBOSE_=1 _XTS_TINYTEST_COLOR_=FALSE \
58+
${R_HOME}/bin/R CMD check ${PKG_TARGZ} --no-vignettes
5859

5960
# Check for CRAN
6061
cran:
6162
@${R_HOME}/bin/R CMD build ${PKG_PATH} && \
63+
_XTS_TINYTEST_VERBOSE_=1 _XTS_TINYTEST_COLOR_=FALSE \
6264
_R_CHECK_CRAN_INCOMING_=false ${R_HOME}/bin/R CMD check ${PKG_TARGZ} --as-cran
6365

6466
# Run unit test suite

0 commit comments

Comments
 (0)