Skip to content

Commit

Permalink
add extra . to ./shinytest and ran tidy_code() to try and sort our pu…
Browse files Browse the repository at this point in the history
…ll request errors
  • Loading branch information
Chris-bennettWk committed Nov 8, 2023
1 parent 4f670bc commit f2dbcb6
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
19 changes: 19 additions & 0 deletions renv/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"bioconductor.version": null,
"external.libraries": [],
"ignored.packages": [],
"package.dependency.fields": [
"Imports",
"Depends",
"LinkingTo"
],
"ppm.enabled": null,
"ppm.ignored.urls": [],
"r.version": null,
"snapshot.type": "packrat",
"use.cache": true,
"vcs.ignore.cellar": true,
"vcs.ignore.library": true,
"vcs.ignore.local": true,
"vcs.manage.ignores": true
}
5 changes: 3 additions & 2 deletions server.R
Original file line number Diff line number Diff line change
Expand Up @@ -174,12 +174,13 @@ server <- function(input, output, session) {
prior_band_chart <- reactive({
req(input$qual_select)
stud_percentages %>%
left_join(lookup_characters, by = c("ReportYr",
left_join(lookup_characters, by = c(
"ReportYr",
"Qual_Description", "SUBLEVNO", "Subject", "SUBJ",
"ASIZE", "GSIZE", "SIZE", "gradeStructure"
)) %>%
subset(ReportYr == input$ReportYr_select &
Qual_Description == input$qual_select &
Qual_Description == input$qual_select &
Subject == input$subj_select &
SIZE == input$size_select &
gradeStructure == input$grade_structure_select) %>%
Expand Down
2 changes: 1 addition & 1 deletion tests/shinytest.R
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
library(shinytest)
shinytest::testApp("./")
shinytest::testApp("../")

0 comments on commit f2dbcb6

Please sign in to comment.