Skip to content

Commit

Permalink
suppress summation warning in interface tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fbenke-pik committed Aug 25, 2023
1 parent 4f63480 commit 2d56918
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .buildlibrary
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ValidationKey: '218501136'
ValidationKey: '218512288'
AcceptedWarnings:
- 'Warning: package ''.*'' was built under R version'
- 'Warning: namespace ''.*'' is not available and has been replaced'
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ message: If you use this software, please cite it using the metadata from this f
type: software
title: 'remind2: The REMIND R package (2nd generation)'
version: 1.115.2
date-released: '2023-08-24'
date-released: '2023-08-25'
abstract: Contains the REMIND-specific routines for data and model output manipulation.
authors:
- family-names: Rodrigues
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Type: Package
Package: remind2
Title: The REMIND R package (2nd generation)
Version: 1.115.2
Date: 2023-08-24
Date: 2023-08-25
Authors@R: c(
person("Renato", "Rodrigues", , "[email protected]", role = c("aut", "cre")),
person("Lavinia", "Baumstark", role = "aut"),
Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-piamInterfaces-Ariadne.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test_that("Test if REMIND reporting produces mandatory variables for Ariadne rep
mode = "wb", quiet = TRUE
)

mif <- convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath)
mif <- suppressWarnings(convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath))

computedVariables <- getItems(mif, dim = 3.3)

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-piamInterfaces-NAVIGATE.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test_that("Test if REMIND reporting produces mandatory variables for NAVIGATE re
mode = "wb", quiet = TRUE
)

mif <- convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath)
mif <- suppressWarnings(convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath))

computedVariables <- getItems(mif, dim = 3.3)

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-piamInterfaces-NGFS.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ test_that("Test if REMIND reporting produces mandatory variables for NGFS report
mode = "wb", quiet = TRUE
)

mif <- convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath)
mif <- suppressWarnings(convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath))

computedVariables <- getItems(mif, dim = 3.3)

Expand Down
2 changes: 1 addition & 1 deletion tests/testthat/test-piamInterfaces-SHAPE.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ test_that("Test if REMIND reporting produces mandatory variables for SHAPE repor
mode = "wb", quiet = TRUE
)

mif <- convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath)
mif <- suppressWarnings(convGDX2MIF(gdxPath, gdx_refpolicycost = gdxPath))

computedVariables <- getItems(mif, dim = 3.3)

Expand Down

0 comments on commit 2d56918

Please sign in to comment.