-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Refactor encoding tests to catch known warning. * Reorg description for readability Used usethis::use_tidy_description() for standardization. Also updated R4DS to DSLC, added the pkgdown site in the URL field, and added a ".9000" while we work on this version (which will probably be at least 1.1). * Switch most examples to examplesIf Also cleaned up some formatting, and added @export directives for S3 methods. This doesn't REALLY export them, it just registers them for dispatch. Closes #94. * Make R CMD check happy. * Style for consistency. * More coverage. Add explicit # nocov to things we won't check, try to cover as much as we can. Also refactored and repaired some tests while I was at it. The biggest change might be that I renamed the test files to match their associated R files. This makes it much easier to run tests and coverage for that single file. With proper mocking, the order of tests shouldn't matter. I also updated to testtthat 3e for snapshots. At the same time, I change the capture.output tests to snapshots. * Update GHA. Other than general updates, the main thing I did was remove the R 3.6 thing specifically since it's way back at the point. * More test coverage. * 100% coverage!
- Loading branch information
1 parent
b2d129a
commit 73e15da
Showing
67 changed files
with
7,714 additions
and
1,594 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,44 @@ | ||
Package: tidytuesdayR | ||
Type: Package | ||
Package: tidytuesdayR | ||
Title: Access the Weekly 'TidyTuesday' Project Dataset | ||
Version: 1.0.3 | ||
Authors@R: | ||
c( | ||
person( | ||
given = "Ellis", | ||
family = "Hughes", | ||
email = "[email protected]", | ||
role = c("aut", "cre") | ||
), | ||
person( | ||
given = "Jon", | ||
family = "Harmon", | ||
email = "[email protected]", | ||
role = "ctb" | ||
), | ||
person( | ||
given = "Thomas", | ||
family = "Mock", | ||
email = "[email protected]", | ||
role = "ctb" | ||
), | ||
person( | ||
given = "R4DS Online Learning Community", | ||
email = "[email protected]", | ||
role = "dtc" | ||
) | ||
) | ||
Description: | ||
'TidyTuesday' is a project by the 'R4DS Online Learning Community' in which they | ||
post a weekly dataset onto post a weekly dataset in a public data repository | ||
(<https://github.com/rfordatascience/tidytuesday>) for people to | ||
analyze and visualize. This package provides the tools to easily download this data and the | ||
description of the source. | ||
Version: 1.0.3.9000 | ||
Authors@R: c( | ||
person("Ellis", "Hughes", , "[email protected]", role = c("aut", "cre")), | ||
person("Jon", "Harmon", , "[email protected]", role = "ctb"), | ||
person("Thomas", "Mock", , "[email protected]", role = "ctb"), | ||
person("Data Science Learning Community", , , "[email protected]", role = "dtc") | ||
) | ||
Description: 'TidyTuesday' is a project by the 'Data Science Learning | ||
Community' in which they post a weekly dataset in a public data | ||
repository (<https://github.com/rfordatascience/tidytuesday>) for | ||
people to analyze and visualize. This package provides the tools to | ||
easily download this data and the description of the source. | ||
License: MIT + file LICENSE | ||
URL: https://github.com/thebioengineer/tidytuesdayR | ||
URL: https://thebioengineer.github.io/tidytuesdayR/, | ||
https://github.com/thebioengineer/tidytuesdayR | ||
BugReports: https://github.com/thebioengineer/tidytuesdayR/issues | ||
Encoding: UTF-8 | ||
LazyData: true | ||
RoxygenNote: 7.2.1 | ||
Depends: R (>= 3.4.0) | ||
Suggests: | ||
testthat (>= 2.1.0), | ||
covr, | ||
pkgdown, | ||
tibble, | ||
withr | ||
Depends: | ||
R (>= 3.4.0) | ||
Imports: | ||
readxl (>= 1.0.0), | ||
rvest (>= 0.3.2), | ||
tools (>= 3.1.0), | ||
httr, | ||
jsonlite, | ||
lubridate (>= 1.7.0), | ||
magrittr, | ||
purrr (>= 0.2.5), | ||
readr (>= 1.0.0), | ||
readxl (>= 1.0.0), | ||
rlang, | ||
rstudioapi (>= 0.2), | ||
xml2 (>= 1.2.0), | ||
httr, | ||
jsonlite, | ||
magrittr, | ||
usethis | ||
rvest (>= 0.3.2), | ||
tools (>= 3.1.0), | ||
usethis, | ||
xml2 (>= 1.2.0) | ||
Suggests: | ||
covr, | ||
pkgdown, | ||
testthat (>= 3.0.0), | ||
tibble, | ||
withr | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.3.2 | ||
Config/testthat/edition: 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.