Skip to content

Commit f2419c2

Browse files
Merge pull request #389 from StuartWheater/v6.3.3-dev
Minor changes for CRAN
2 parents 4ebc059 + a645441 commit f2419c2

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
"refer_name","rate","lower_tolerance","upper_tolerance"
2+
"meanDS::perf::numeric::0","10761.0000","0.5","2"
3+
"meanDS::perf::numberAndNA::0","10190.0000","0.5","2"
4+
"varDS::perf::numeric::0","11530.0000","0.5","2"
5+
"varDS::perf::numberAndNA::0","11469.0000","0.5","2"

tests/testthat/test-perf-meanDS.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ set.standard.disclosure.settings()
2222

2323
context("meanDS::perf::numeric")
2424
test_that("numeric meanDS - performance", {
25+
skip_on_cran()
26+
2527
input <- c(0.0, 1.0, 2.0, 3.0, 4.0)
2628

2729
.durationSec <- 30 # seconds
@@ -55,6 +57,8 @@ test_that("numeric meanDS - performance", {
5557

5658
context("meanDS::perf::numeric with NA")
5759
test_that("numeric meanDS, with NA - performance", {
60+
skip_on_cran()
61+
5862
input <- c(0.0, NA, 2.0, NA, 4.0)
5963

6064
.durationSec <- 30 # seconds

tests/testthat/test-perf-varDS.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ set.standard.disclosure.settings()
2222

2323
context("varDS::perf::numeric")
2424
test_that("numeric varDS - performance", {
25+
skip_on_cran()
26+
2527
input <- c(0.0, 1.0, 2.0, 3.0, 4.0)
2628

2729
.durationSec <- 30 # seconds
@@ -55,6 +57,8 @@ test_that("numeric varDS - performance", {
5557

5658
context("varDS::perf::numeric with NA")
5759
test_that("numeric varDS, with NA - performance", {
60+
skip_on_cran()
61+
5862
input <- c(0.0, NA, 2.0, NA, 4.0)
5963

6064
.durationSec <- 30 # seconds

0 commit comments

Comments
 (0)