Skip to content

Commit

Permalink
CRAN version 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
gaborcsardi committed Feb 16, 2022
1 parent 16e614c commit 811fe0b
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: pkgcache
Title: Cache 'CRAN'-Like Metadata and R Packages
Version: 2.0.0.9000
Version: 2.0.1
Authors@R:
person(given = "Gábor",
family = "Csárdi",
Expand Down
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@

# pkgcache development version
# pkgcache 2.0.1

No user visible changes.

# pkgcache 2.0.0

Expand Down
4 changes: 2 additions & 2 deletions tests/test-async.R
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@

if (file.exists("async")) {
if (file.exists("async") && Sys.getenv("NOT_CRAN") == "true") {
library(testthat)
library(pkgcache)
print(sessioninfo::package_info("pkgcache", dependencies = TRUE))

test_dir(
"async",
env = new.env(parent = asNamespace("pkgcache")),
reporter = "check"
reporter = "summary"
)
}
8 changes: 5 additions & 3 deletions tests/testthat.R
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
library(testthat)
library(pkgcache)

test_check("pkgcache")
if (Sys.getenv("NOT_CRAN") == "true") {
library(testthat)
library(pkgcache)
test_check("pkgcache", reporter = "summary")
}

0 comments on commit 811fe0b

Please # to comment.