You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are several objects that are duplicated across test files. You can define global objects used in each test file by adding them to helper-data.R. For example, this code is repeated in a lot of the files:
Adding it to helper-data.R ensures it's only created once and will reduce the time needed when the tests are run. You can also load any packages in this file that are used in more than one test file.
Thanks @fawda123; this is a great suggestion that will be so helpful in my other software packages too! Incorporated in this commit (on the develop branch).
There are several objects that are duplicated across test files. You can define global objects used in each test file by adding them to
helper-data.R
. For example, this code is repeated in a lot of the files:Adding it to
helper-data.R
ensures it's only created once and will reduce the time needed when the tests are run. You can also load any packages in this file that are used in more than one test file.openjournals/joss-reviews#6389
The text was updated successfully, but these errors were encountered: