File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -34,15 +34,15 @@ R CMD INSTALL $PKG_TGZ
34
34
echo " Running R CMD check --as-cran $PKG_TGZ "
35
35
check_output=$( R CMD check --as-cran $PKG_TGZ 2>&1 )
36
36
check_status=$?
37
+ echo " $check_output "
37
38
# Check for WARNINGs or NOTEs in the output
38
39
if echo " $check_output " | grep -q -E " WARNING|NOTE" ; then
39
40
echo " CRAN check generated WARNINGs or NOTEs:"
40
- echo " $check_output "
41
41
exit 1
42
42
fi
43
43
# Exit with original status if no WARNINGs/NOTEs but check failed
44
44
if [ $check_status -ne 0 ]; then
45
45
echo " R CMD check failed with status $check_status "
46
- echo " $check_output "
47
46
exit $check_status
48
- fi
47
+ fi
48
+ echo " CRAN check completed successfully"
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ tests_init <- function(dir = ".", ...) {
41
41
testDir <- file.path(testPath , " animint-htmltest" )
42
42
# if the htmltest directory exists, wipe clean, then create an empty folder
43
43
unlink(testDir , recursive = TRUE )
44
- options(chromote.timeout = 120 )
44
+ options(chromote.timeout = 3000 )
45
45
chrome.session <- chromote :: ChromoteSession $ new()
46
46
# Enable required DevTools domains for coverage
47
47
chrome.session $ Runtime $ enable()
You can’t perform that action at this time.
0 commit comments