We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7baf7c9 commit 07270a3Copy full SHA for 07270a3
.travis.yml
@@ -32,7 +32,10 @@ before_script:
32
- Rscript -e 'library(devtools);install_deps(repos = "http://cran.rstudio.com", dependencies = TRUE)'
33
34
script:
35
- - Rscript -e 'devtools::check()'
+ # run R CMD check on the non-pull request build
36
+ - sh -c "if [ '$TRAVIS_PULL_REQUEST' = 'false' ]; then Rscript -e 'devtools::check()'"
37
+ # we do some fancy stuff on the pull request build that confuses R CMD check
38
+ - sh -c "if [ '$TRAVIS_PULL_REQUEST' != 'false' ]; then Rscript -e 'devtools::install(); source(\"tests/testhat.R\", chdir = T)'"
39
40
after_success:
41
- cd ../plotly-test-table
0 commit comments