Skip to content

Commit 1f66c7f

Browse files
authored
Merge pull request #324 from stan-dev/expand-testing
Expand checking workflows to more platforms
2 parents 030cb2c + c244c27 commit 1f66c7f

File tree

122 files changed

+15278
-15279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

122 files changed

+15278
-15279
lines changed

.github/workflows/R-CMD-check.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,20 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
config:
21+
- {os: macos-latest, r: 'devel'}
2122
- {os: macos-latest, r: 'release'}
23+
- {os: macos-latest, r: 'oldrel'}
24+
- {os: windows-latest, r: 'devel'}
2225
- {os: windows-latest, r: 'release'}
23-
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
26+
- {os: windows-latest, r: 'oldrel'}
27+
- {os: ubuntu-latest, r: 'devel'}
2428
- {os: ubuntu-latest, r: 'release'}
25-
- {os: ubuntu-latest, r: 'oldrel-1'}
29+
- {os: ubuntu-latest, r: 'oldrel'}
2630

2731
env:
2832
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2933
R_KEEP_PKG_SOURCE: yes
34+
R_VERSION_TYPE: ${{ matrix.config.r }}
3035

3136
steps:
3237
- uses: actions/checkout@v3
@@ -36,7 +41,6 @@ jobs:
3641
- uses: r-lib/actions/setup-r@v2
3742
with:
3843
r-version: ${{ matrix.config.r }}
39-
http-user-agent: ${{ matrix.config.http-user-agent }}
4044
use-public-rspm: true
4145

4246
- uses: r-lib/actions/setup-r-dependencies@v2

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Suggests:
5555
survival,
5656
testthat (>= 2.0.0),
5757
vdiffr (>= 1.0.2)
58-
RoxygenNote: 7.3.0
58+
RoxygenNote: 7.3.1
5959
VignetteBuilder: knitr
6060
Encoding: UTF-8
6161
Roxygen: list(markdown = TRUE)

R/ppc-distributions.R

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -550,7 +550,6 @@ ppc_violin_grouped <-
550550
args_violin_y <- list(
551551
data = function(x) dplyr::filter(x, .data$is_y),
552552
aes(fill = "y", color = "y"),
553-
show.legend = FALSE,
554553
alpha = 0
555554
)
556555

@@ -561,8 +560,7 @@ ppc_violin_grouped <-
561560
alpha = y_alpha,
562561
size = y_size,
563562
width = y_jitter,
564-
height = 0,
565-
show.legend = FALSE
563+
height = 0
566564
)
567565

568566
violin_y_func <- if (y_violin) geom_violin else geom_ignore

R/ppc-test-statistics.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ ppc_stat_freqpoly <-
216216
geom_vline(
217217
data = dplyr::filter(data, .data$variable == "y"),
218218
mapping = aes(xintercept = .data$value, color = "y"),
219-
show.legend = FALSE,
219+
show.legend = TRUE,
220220
linewidth = 1
221221
) +
222222
scale_color_ppc(

tests/testthat/_snaps/mcmc-diagnostics/mcmc-neff-default.svg

Lines changed: 30 additions & 30 deletions
Loading

tests/testthat/_snaps/mcmc-diagnostics/mcmc-neff-hist-binwidth.svg

Lines changed: 27 additions & 27 deletions
Loading

0 commit comments

Comments
 (0)