gitlabr icon indicating copy to clipboard operation
gitlabr copied to clipboard

As dev, I want to know the steps to contribute to the development of {gitlabr}

Open MurielleDelmotte opened this issue 2 years ago • 0 comments

If I follow the steps in the CONTRIBUTING.md/create_testor_on_gitlab.R file, I can't run devtools::test()

Validation

  • [ ] We don't close the connection to gitlab until all the repo are created
  • [ ] We have the complete list of projects needed to run devtools::test()

Technical

In create_testor_on_gitlab.R:

Move at the end of file:

  # Unset connection
  unset_gitlab_connection()

All packages are required to run devtools::test() (CI AND Local):

# CI only - to allow run in parallel
projects_names <- c("testor.macos", "testor.windows", "testor.release",
                    "testor.devel", "testor.release.master", "testor.coverage")
# Local - Only the first one is mandatory
projects_names <- c("testor.main", "testor.master")

MurielleDelmotte avatar May 11 '23 08:05 MurielleDelmotte