Skip to content

Commit

Permalink
adding test for Grid2op#364
Browse files Browse the repository at this point in the history
  • Loading branch information
BDonnot committed Nov 30, 2022
1 parent 69afb2c commit 98fe64a
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions grid2op/tests/test_issue_364.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Copyright (c) 2019-2022, RTE (https://www.rte-france.com)
# See AUTHORS.txt and https://github.com/rte-france/Grid2Op/pull/319
# This Source Code Form is subject to the terms of the Mozilla Public License, version 2.0.
# If a copy of the Mozilla Public License, version 2.0 was not distributed with this file,
# you can obtain one at http://mozilla.org/MPL/2.0/.
# SPDX-License-Identifier: MPL-2.0
# This file is part of Grid2Op, Grid2Op a testbed platform to model sequential decision making in power systems.

import grid2op
import unittest
import warnings

from grid2op.Runner import Runner


class Issue364Tester(unittest.TestCase):
def setUp(self) -> None:
with warnings.catch_warnings():
warnings.filterwarnings("ignore")
self.env = grid2op.make("l2rpn_wcci_2022", test=True)

def tearDown(self) -> None:
self.env.close()
return super().tearDown()

def test_copy(self):
act = self.env.action_space({"curtail": [(1, 0.)]})
dict_ = act.impact_on_objects()
assert act._modif_curtailment
assert dict_["curtailment"]["changed"]
assert not dict_["storage"]["changed"]

if __name__ == "__main__":
unittest.main()

0 comments on commit 98fe64a

Please sign in to comment.