No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
cd2e8a6
... +2 ...
42b93fb
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
85 | 85 | py_path <- if(is_windows) "python.exe" else "python" |
|
86 | 86 | } |
|
87 | 87 | midi2ly_path <- tabr_options()$midi2ly |
|
88 | - | if(midi2ly_path == "") midi2ly_path <- "midi2ly.py" |
|
89 | - | system(paste0( |
|
88 | + | if(midi2ly_path == "") midi2ly_path <- "midi2ly" |
|
89 | + | call_string <- paste0( |
|
90 | 90 | "\"", py_path, "\" ", "\"", midi2ly_path, "\" ", x, " --output=\"", |
|
91 | 91 | .adjust_file_path(file)$lp, "\" \"", midi_file, "\"" |
|
92 | - | )) |
|
92 | + | ) |
|
93 | + | system(call_string) |
|
93 | 94 | invisible() |
|
94 | 95 | } |
|
95 | 96 |
29 | 29 | #' @rdname lilypond_root |
|
30 | 30 | #' @export |
|
31 | 31 | tabr_lilypond_api <- function(){ |
|
32 | - | x <- "GNU LilyPond 2.18.2" |
|
33 | - | msg <- paste0("The tabr ", getNamespaceVersion("tabr"), |
|
34 | - | " LilyPond API was built and tested against ", x, ".") |
|
32 | + | x <- "GNU LilyPond 2.23.0" |
|
33 | + | msg <- paste0( |
|
34 | + | "The tabr ", getNamespaceVersion("tabr"), |
|
35 | + | " LilyPond API was built and tested against ", x, |
|
36 | + | " for Windows and Linux.\nLilypond is not officially supported for OSX." |
|
37 | + | ) |
|
35 | 38 | message(msg) |
|
36 | 39 | } |
|
37 | 40 |
3 | 3 | #' Options for tabr package. |
|
4 | 4 | #' |
|
5 | 5 | #' Currently only \code{lilypond}, \code{midi2ly} and \code{python} are used. |
|
6 | - | #' On Windows systems, if the system path for lilypond.exe, midi2ly.py and |
|
6 | + | #' On Windows systems, if the system path for lilypond.exe, midi2ly and |
|
7 | 7 | #' python.exe are not stored in the system PATH environmental variable, they |
|
8 | 8 | #' must be provided by the user after loading the package. |
|
9 | 9 | #' |
Learn more Showing 1 files with coverage changes found.
R/midi.R
Files | Coverage |
---|---|
R | -0.11% 99.35% |
Project Totals (32 files) | 99.35% |
42b93fb
8982d26
a64aed6
cd2e8a6