Skip to content

Commit eb8987f

Browse files
committed
Addressing linking issues on Windows, doppleganger issues on Unix.
1 parent 5c615eb commit eb8987f

3 files changed

Lines changed: 15 additions & 1 deletion

File tree

src/Makevars

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## -*- mode: makefile; -*-
2+
3+
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)

src/Makevars.win

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## -*- mode: makefile; -*-
2+
3+
PKG_LIBS = $(LAPACK_LIBS) $(BLAS_LIBS) $(FLIBS)

tests/testthat/test-visualize.R

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,10 @@ test_that("Trace tables", {
2424
})
2525

2626
test_that("Density plot", {
27-
set.seed(42)
27+
skip_on_ci()
28+
skip_on_cran()
29+
skip_on_covr()
30+
2831
run <- readRDS(test_path("./example_run.rds"))
2932
vdiffr::expect_doppelganger(
3033
"visualize-basic",
@@ -38,6 +41,11 @@ test_that("Density plot", {
3841
})
3942

4043
test_that("Trace plot", {
44+
skip_on_ci()
45+
skip_on_cran()
46+
skip_on_covr()
47+
48+
set.seed(42)
4149
run <- readRDS(test_path("./example_run.rds"))
4250
vdiffr::expect_doppelganger(
4351
"visualize-trace",

0 commit comments

Comments
 (0)