Skip to content

Commit

Permalink
Drop dataset-serialize test on performance report temporarily (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
boshek committed Oct 23, 2023
1 parent 50c847b commit 0521a80
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion performance-release-report/performance-release-report.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,11 @@ Live Conbench UI views for the macrobenchmarks are available at this [url](`r ge
#names(macro_bm_list)
lang <- "Python"
python_plots <- map_chr(names(macro_bm_list[[lang]]), \(bm_name) {
bm_names <- names(macro_bm_list[[lang]])
bm_names <- bm_names[!bm_names %in% c("dataset-serialize")] ## dropping dataset-serialize for now
python_plots <- map_chr(bm_names, \(bm_name) {
knit_child(
text = c(
glue("```{r plot-<<lang>>-<<bm_name>>}", .open = "<<", .close = ">>"),
Expand Down

0 comments on commit 0521a80

Please sign in to comment.