Skip to content

Commit 27e30f1

Browse files
bschilderclaude
andcommitted
Add devoptera to Remotes, restore strict test
devoptera (RajLabMSSM/devoptera) was in Suggests but not Remotes, so description_extract couldn't resolve it on CI. Restore the strict equality check in test-package_metadata. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 95ae96d commit 27e30f1

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ Remotes:
6464
github::RajLabMSSM/catalogueR,
6565
github::RajLabMSSM/echofinemap,
6666
github::RajLabMSSM/echoverseTemplate,
67+
github::RajLabMSSM/devoptera,
6768
github::RajLabMSSM/echolocatoR,
6869
github::neurogenomics/rworkflows
6970
RoxygenNote: 7.3.3

tests/testthat/test-package_metadata.R

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,9 @@ test_that("package_metadata works", {
55
testthat::expect_gte(nrow(meta), 12)
66
pkg_col <- if("Package" %in% colnames(meta)) "Package" else "package"
77
testthat::expect_true(pkg_col %in% colnames(meta))
8-
## All returned packages should be echoverse modules
9-
## (some modules may be missing if their DESCRIPTION can't be fetched)
10-
testthat::expect_true(
11-
all(meta[[pkg_col]] %in% echodeps:::echoverse_modules())
8+
testthat::expect_equal(
9+
sort(meta[[pkg_col]]),
10+
sort(echodeps:::echoverse_modules())
1211
)
1312

1413
#### other ####

0 commit comments

Comments
 (0)