Skip to content

Commit

Permalink
take out travis env arg
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkEdmondson1234 committed Oct 23, 2017
1 parent fab2338 commit c9721e1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: bigQueryR
Title: Interface with Google BigQuery with Shiny Compatibility
Version: 0.3.1
Version: 0.3.2
Authors@R: c(person("Mark", "Edmondson",email = "r@sunholo.com",
role = c("aut", "cre")),
person("Hadley", "Wickham", , "hadley@rstudio.com", role = "ctb")
Expand Down
5 changes: 4 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# bigQuery 0.3.2

* Move to new batch endpoint (#41)

# bigQuery 0.3.1

* Fix asynch job fail if user previously `set.seed()` (#37)
* skip tests on CRAN causing error
* fix warning in scope check (#40)
* Move to new batch endpoint (#41)

# bigQueryR 0.3.0

Expand Down
3 changes: 1 addition & 2 deletions R/options.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
.onAttach <- function(libname, pkgname){

attempt <- try(googleAuthR::gar_attach_auto_auth("https://www.googleapis.com/auth/cloud-platform",
environment_var = "BQ_AUTH_FILE",
travis_environment_var = "TRAVIS_BQ_AUTH_FILE"))
environment_var = "BQ_AUTH_FILE"))

if(inherits(attempt, "try-error")){
warning("Problem using auto-authentication when loading from BQ_AUTH_FILE.
Expand Down
4 changes: 0 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
* ubuntu 12.04 (on travis-ci), R 3.4.0
* Windows (on win-builder) R 3.4.0

## Failed CRAN tests

This is a patch to remove failing tests of 0.3.0 from being ran on CRAN - as they are authenticated API based they fail in CRANs automated testing.

## R CMD check results

0 errors | 0 warnings | 1 notes
Expand Down

0 comments on commit c9721e1

Please sign in to comment.