CRAN Package Check Results for Package projects

Last updated on 2020-05-29 10:47:30 CEST.

Flavor Version Tinstall Tcheck Ttotal Status Flags
r-devel-linux-x86_64-debian-clang 2.1.0 5.93 43.23 49.16 ERROR
r-devel-linux-x86_64-debian-gcc 2.1.0 4.43 33.51 37.94 ERROR
r-devel-linux-x86_64-fedora-clang 2.1.0 69.21 ERROR
r-devel-linux-x86_64-fedora-gcc 2.1.0 57.03 ERROR
r-devel-windows-ix86+x86_64 2.1.0 16.00 59.00 75.00 ERROR
r-patched-linux-x86_64 2.1.0 5.47 43.07 48.54 ERROR
r-patched-solaris-x86 2.1.0 80.40 ERROR
r-release-linux-x86_64 2.1.0 4.45 42.82 47.27 ERROR
r-release-osx-x86_64 2.1.0 NOTE
r-release-windows-ix86+x86_64 2.1.0 12.00 78.00 90.00 ERROR
r-oldrel-osx-x86_64 2.1.0 NOTE
r-oldrel-windows-ix86+x86_64 2.1.0 9.00 58.00 67.00 ERROR

Check Details

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in 'projects-Ex.R' failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    /tmp/RtmprRBmo2/dir5a09309f6546/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie~
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag~ United States Governm~ 888 Classified Dr, Wash~
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    2 1 Math Dept. Springfield Colle~ 123 College St, Springfield~
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     x
     1. +-projects::new_project(...)
     2. | \-projects::projects_stage(1L)
     3. | \-vctrs::vec_cast(x, character())
     4. \-vctrs::vec_default_cast(...)
     5. \-vctrs::stop_incompatible_cast(...)
     6. \-vctrs::stop_incompatible_type(...)
     7. \-vctrs:::stop_incompatible(...)
     8. \-vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-devel-linux-x86_64-debian-clang

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in ‘projects-Ex.R’ failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    /home/hornik/tmp/scratch/RtmpATQtfM/dir62493b729f27/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie…
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag… United States Governm… 888 Classified Dr, Wash…
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    2 1 Math Dept. Springfield Colle… 123 College St, Springfield…
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     █
     1. ├─projects::new_project(...)
     2. │ └─projects::projects_stage(1L)
     3. │ └─vctrs::vec_cast(x, character())
     4. └─vctrs::vec_default_cast(...)
     5. └─vctrs::stop_incompatible_cast(...)
     6. └─vctrs::stop_incompatible_type(...)
     7. └─vctrs:::stop_incompatible(...)
     8. └─vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-devel-linux-x86_64-debian-gcc

Version: 2.1.0
Check: dependencies in R code
Result: NOTE
    Namespace in Imports field not imported from: ‘methods’
     All declared Imports should be used.
Flavors: r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-solaris-x86, r-release-osx-x86_64, r-oldrel-osx-x86_64

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in ‘projects-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    /tmp/RtmpSgqN2c/working_dir/RtmpmSnoHw/dir25da582cc98/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie…
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag… United States Governm… 888 Classified Dr, Wash…
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    2 1 Math Dept. Springfield Colle… 123 College St, Springfield…
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     █
     1. ├─projects::new_project(...)
     2. │ └─projects::projects_stage(1L)
     3. │ └─vctrs::vec_cast(x, character())
     4. └─vctrs::vec_default_cast(...)
     5. └─vctrs::stop_incompatible_cast(...)
     6. └─vctrs::stop_incompatible_type(...)
     7. └─vctrs:::stop_incompatible(...)
     8. └─vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-devel-linux-x86_64-fedora-clang

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in ‘projects-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    /tmp/RtmpNuE7D3/working_dir/Rtmp8kv311/dir88f06dc9c19/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie…
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag… United States Governm… 888 Classified Dr, Wash…
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    2 1 Math Dept. Springfield Colle… 123 College St, Springfield…
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     █
     1. ├─projects::new_project(...)
     2. │ └─projects::projects_stage(1L)
     3. │ └─vctrs::vec_cast(x, character())
     4. └─vctrs::vec_default_cast(...)
     5. └─vctrs::stop_incompatible_cast(...)
     6. └─vctrs::stop_incompatible_type(...)
     7. └─vctrs:::stop_incompatible(...)
     8. └─vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-devel-linux-x86_64-fedora-gcc

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in 'projects-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    D:/temp/Rtmpo7g5Jn/dir2fdf85bb8324f/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie~
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag~ United States Governm~ 888 Classified Dr, Wash~
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    2 1 Math Dept. Springfield Colle~ 123 College St, Springfield~
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     x
     1. +-projects::new_project(...)
     2. | \-projects::projects_stage(1L)
     3. | \-vctrs::vec_cast(x, character())
     4. \-vctrs::vec_default_cast(...)
     5. \-vctrs::stop_incompatible_cast(...)
     6. \-vctrs::stop_incompatible_type(...)
     7. \-vctrs:::stop_incompatible(...)
     8. \-vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-devel-windows-ix86+x86_64

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in ‘projects-Ex.R’ failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    /tmp/RtmpzoqWAw/dir6b5065c1fe3/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie…
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag… United States Governm… 888 Classified Dr, Wash…
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    2 1 Math Dept. Springfield Colle… 123 College St, Springfield…
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     █
     1. ├─projects::new_project(...)
     2. │ └─projects::projects_stage(1L)
     3. │ └─vctrs::vec_cast(x, character())
     4. └─vctrs::vec_default_cast(...)
     5. └─vctrs::stop_incompatible_cast(...)
     6. └─vctrs::stop_incompatible_type(...)
     7. └─vctrs:::stop_incompatible(...)
     8. └─vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-patched-linux-x86_64

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in ‘projects-Ex.R’ failed
    The error most likely occurred in:
    
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    /tmp/Rtmp8WaiUF/working_dir/RtmpMraqeW/dir6022531a1b2d/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie…
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag… United States Governm… 888 Classified Dr, Wash…
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    2 1 Math Dept. Springfield Colle… 123 College St, Springfield…
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     █
     1. ├─projects::new_project(...)
     2. │ └─projects::projects_stage(1L)
     3. │ └─vctrs::vec_cast(x, character())
     4. └─vctrs::vec_default_cast(...)
     5. └─vctrs::stop_incompatible_cast(...)
     6. └─vctrs::stop_incompatible_type(...)
     7. └─vctrs:::stop_incompatible(...)
     8. └─vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-patched-solaris-x86

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in ‘projects-Ex.R’ failed
    The error most likely occurred in:
    
    > base::assign(".ptime", proc.time(), pos = "CheckExEnv")
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    /tmp/RtmpgXFGzS/dirc47544a4c7f/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie…
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag… United States Governm… 888 Classified Dr, Wash…
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    2 1 Math Dept. Springfield Colle… 123 College St, Springfield…
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle… 321 University Boulevard, S…
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     █
     1. ├─projects::new_project(...)
     2. │ └─projects::projects_stage(1L)
     3. │ └─vctrs::vec_cast(x, character())
     4. └─vctrs::vec_default_cast(...)
     5. └─vctrs::stop_incompatible_cast(...)
     6. └─vctrs::stop_incompatible_type(...)
     7. └─vctrs:::stop_incompatible(...)
     8. └─vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-release-linux-x86_64

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in 'projects-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    D:/temp/Rtmpmq2RUv/dirc92c1d9c22e5/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie~
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag~ United States Governm~ 888 Classified Dr, Wash~
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    2 1 Math Dept. Springfield Colle~ 123 College St, Springfield~
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     x
     1. +-projects::new_project(...)
     2. | \-projects::projects_stage(1L)
     3. | \-vctrs::vec_cast(x, character())
     4. \-vctrs::vec_default_cast(...)
     5. \-vctrs::stop_incompatible_cast(...)
     6. \-vctrs::stop_incompatible_type(...)
     7. \-vctrs:::stop_incompatible(...)
     8. \-vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-release-windows-ix86+x86_64

Version: 2.1.0
Check: examples
Result: ERROR
    Running examples in 'projects-Ex.R' failed
    The error most likely occurred in:
    
    > ### Name: header
    > ### Title: Print project header to console
    > ### Aliases: header
    >
    > ### ** Examples
    >
    > #############################################################################
    > # SETUP
    > old_home <- Sys.getenv("HOME")
    > old_ppath <- Sys.getenv("PROJECTS_FOLDER_PATH")
    > temp_dir <- tempfile("dir")
    > dir.create(temp_dir)
    > Sys.unsetenv("PROJECTS_FOLDER_PATH")
    > Sys.setenv(HOME = temp_dir)
    > setup_projects(path = temp_dir)
    projects folder created at
    D:/temp/RtmpOIzyHt/dir1c3382bdf222/projects
    
    Add affiliations with new_affiliation(),
    then add authors with new_author(),
    then create projects with new_project()
    > new_affiliation(department_name = "Math Dept.",
    + institution_name = "Springfield College",
    + address = "123 College St, Springfield, AB")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 1 Math Dept. Springfield College 123 College St, Springfield, AB
    > new_affiliation(department_name = "Art Department",
    + institution_name = "Springfield College",
    + address = "321 University Boulevard, Springfield, AB",
    + id = 42)
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield College 321 University Boulevard, Springfie~
    > new_affiliation(department_name = "Central Intelligence Agency",
    + institution_name = "United States Government",
    + address = "888 Classified Dr, Washington DC")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 2 Central Intelligence Ag~ United States Governm~ 888 Classified Dr, Wash~
    > new_affiliation(department_name = "Pyrotechnics",
    + institution_name = "ACME")
    New affiliation:
    # A tibble: 1 x 4
     id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 3 Pyrotechnics ACME <NA>
    > new_author(given_names = "Rosetta", last_name = "Stone",
    + affiliations = c(42, "Math"), degree = "PhD",
    + email = "slab@rock.net", phone = "867-555-5309", id = 8888)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 8888 Stone Rosetta <NA> PhD slab@rock.net 867-555-5309
    
    New author's affiliations:
    # A tibble: 2 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    2 1 Math Dept. Springfield Colle~ 123 College St, Springfield~
    > new_author(given_names = "Spiro", last_name = "Agnew", degree = "LLB",
    + affiliations = "Art D", id = 13)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 13 Agnew Spiro <NA> LLB <NA> <NA>
    
    New author's affiliations:
    # A tibble: 1 x 4
     affiliation_id department_name institution_name address
     <int> <chr> <chr> <chr>
    1 42 Art Department Springfield Colle~ 321 University Boulevard, S~
    > new_author(given_names = "Plato", id = 303)
    New author:
    # A tibble: 1 x 7
     id last_name given_names title degree email phone
     <int> <chr> <chr> <chr> <chr> <chr> <chr>
    1 303 <NA> Plato <NA> <NA> <NA> <NA>
    
    New author's affiliations:
    None.> new_project(title = "Test Project 1", authors = c(13, "303", "Stone"),
    + corresp_auth = "Stone")
    Error: Can't convert <integer> to <character>.
    Backtrace:
     x
     1. +-projects::new_project(...)
     2. | \-projects::projects_stage(1L)
     3. | \-vctrs::vec_cast(x, character())
     4. \-vctrs::vec_default_cast(...)
     5. \-vctrs::stop_incompatible_cast(...)
     6. \-vctrs::stop_incompatible_type(...)
     7. \-vctrs:::stop_incompatible(...)
     8. \-vctrs:::stop_vctrs(...)
    Execution halted
Flavor: r-oldrel-windows-ix86+x86_64