trevorld / findpython
Showing 1 of 2 files from the diff.
Other files ignored by Codecov
NEWS.md has changed.

@@ -115,10 +115,10 @@
Loading
115 115
116 116
get_python_cmds <- function() {
117 117
    python_cmds <- c(getOption("python_cmd", ""), "python", Sys.getenv("PYTHON", ""),
118 -
                    sprintf("python%.1f", c(seq(4.9, 2.0, by = -0.1))),
119 -
                    "python4", "python3", "python2", "pypy",
120 -
                    Sys.getenv("PYTHON4", ""), Sys.getenv("PYTHON3", ""),
121 -
                    Sys.getenv("PYTHON2", ""), sprintf("C:/Python%s/python", c(49:20)))
118 +
                    paste0("python4.", seq(9, 0, by = -1)), Sys.getenv("PYTHON4", ""), "python4",
119 +
                    paste0("python3.", seq(12, 0, by = -1)), Sys.getenv("PYTHON3", ""), "python3",
120 +
                    paste0("python2.", seq(7, 0, by = -1)), Sys.getenv("PYTHON2", ""), "python2",
121 +
                    "pypy", sprintf("C:/Python%s/python", c(49:20)))
122 122
    python_cmds <- unique(python_cmds)
123 123
    python_cmds <- Sys.which(python_cmds)
124 124
    python_cmds[which(python_cmds != "")]
Files Coverage
R/find_python_cmd.r 97.78%
Project Totals (1 files) 97.78%
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file. The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files. The size and color of each slice is representing the number of statements and the coverage, respectively.
Grid
Each block represents a single file in the project. The size and color of each block is represented by the number of statements and the coverage, respectively.
Loading