diff --git a/.github/internal/install-shinyverse/action.yaml b/.github/internal/install-shinyverse/action.yaml index eb09667fd3..b29e21ec72 100644 --- a/.github/internal/install-shinyverse/action.yaml +++ b/.github/internal/install-shinyverse/action.yaml @@ -26,10 +26,6 @@ inputs: description: packagemanager url to be used for CRAN installations default: "https://packagemanager.posit.co/cran/latest" required: false - shinyverse-cran-url: - description: CRAN url to be used for shinyverse installations via r-universe - default: "https://posit-dev-shinycoreci.r-universe.dev" - required: false cran-url: description: CRAN url to be used for CRAN installations default: "https://cran.rstudio.com" diff --git a/.github/workflows/apps-test-os.yml b/.github/workflows/apps-test-os.yml index 363a30ce52..dc500fd668 100644 --- a/.github/workflows/apps-test-os.yml +++ b/.github/workflows/apps-test-os.yml @@ -34,11 +34,6 @@ on: description: packagemanager url to be used for CRAN installations default: "https://packagemanager.posit.co/cran/latest" required: false - shinyverse-cran-url: - type: string - description: CRAN url to be used for shinyverse installations via r-universe - default: "https://posit-dev-shinycoreci.r-universe.dev" - required: false # rtools-35: # type: boolean # default: true @@ -141,7 +136,6 @@ jobs: pandoc-version: ${{ inputs.pandoc-version }} extra-packages: ${{ inputs.extra-packages }} packagemanager-cran-url: ${{ inputs.packagemanager-cran-url }} - shinyverse-cran-url: ${{ inputs.shinyverse-cran-url }} # Install packages as necessary! - name: Run tests diff --git a/README.md b/README.md index 9429e58d9e..97dcbe6758 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ These GitHub packages will be installed to make sure the latest package developm #### R-Universe -`{shinycoreci}` testing leverages rOpenScie [`r-universe`](https://r-universe.dev/search/), specifically the [`posit-dev-shinycoreci`](https://posit-dev-shinycoreci.r-universe.dev/builds) universe. This universe is used to install the latest development versions of the Shiny related packages (updated hourly) used in the testing apps without the need for a GitHub token. This last detail is important, as it allows GitHub Actions to install packages freely without the worry of being rate limited. This gives us the ability to attempt to install each app’s dependencies independently, leading to higher test coverage as a single dependencies does not block the entire test execution. +`{shinycoreci}` testing leverages rOpenSci [`r-universe`](https://r-universe.dev/search/), specifically the [`posit-dev-shinycoreci`](https://posit-dev-shinycoreci.r-universe.dev/builds) universe. This universe is used to install the latest development versions of the Shiny related packages (updated hourly) used in the testing apps without the need for a GitHub token. This last detail is important, as it allows GitHub Actions to install packages freely without the worry of being rate limited. This gives us the ability to attempt to install each app’s dependencies independently, leading to higher test coverage as a single dependencies does not block the entire test execution. ## Running manual tests diff --git a/inst/apps/000-pkg-versions/app.R b/inst/apps/000-pkg-versions/app.R index b0eccf5bb9..f05d0e8533 100644 --- a/inst/apps/000-pkg-versions/app.R +++ b/inst/apps/000-pkg-versions/app.R @@ -106,15 +106,6 @@ server <- function(input, output, session) { }) output$all_pkg_info <- renderPrint({ - # pkg_info <- sessioninfo::package_info("installed", include_base = FALSE) - - # pkg_info %>% - # dplyr::filter(package %in% pkgs, ) %>% - # dplyr::filter - # dplyr::select(package, version, loaded, attached, libPath) - - # sub_pkg_info <- pkg_info[pkg_info$package %in% pkgs, ] - dt %>% print(n = Inf, width = 1000) })