Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deprecate test file #161

Merged
merged 3 commits into from
Oct 9, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: BoutrosLab.plotting.general
Version: 7.0.9
Version: 7.0.10
Type: Package
Title: Functions to Create Publication-Quality Plots
Date: 2023-09-20
Date: 2023-10-09
Authors@R: c(person("Paul Boutros", role = c("aut", "cre"), email = "[email protected]"),
person("Christine P'ng", role = "ctb"),
person("Jeff Green", role = "ctb"),
Expand Down
9 changes: 8 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
BoutrosLab.plotting.general 7.0.9 2023-09-20
BoutrosLab.plotting.general 7.0.10 2023-10-09

UPDATE
* Add deprecation warning for test file in preparation for using
testthat in the v8.0.0 release

--------------------------------------------------------------------------
BoutrosLab.plotting.general 7.0.9 2023-07-21

UPDATE
* Run R CMD check GitHub action weekly
Expand Down
6 changes: 6 additions & 0 deletions tests/test_plotting_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
# Description: This script runs the plotting code in BoutrosLab.plotting.general for testing purposes
# The plots are stored in variables and plotted together in a single multiple in order to save plot-generation time

warning(paste(
'BPG will discontinue this test file in v8.0.0.',
'Instead, tests will use the standard testthat format.',
'For more information, see https://testthat.r-lib.org/'
));

### LOAD LIBRARY ###################################################################################
library(BoutrosLab.plotting.general);

Expand Down
Loading