Skip to content

Commit

Permalink
checking for pipeline issues
Browse files Browse the repository at this point in the history
  • Loading branch information
PimLeerkes committed Feb 4, 2025
1 parent 8574594 commit 29ba03e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/test_mapping.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,7 @@ def test_stormpy_to_stormvogel_and_back_mdp():

assert sparse_equal(stormpy_mdp, new_stormpy_mdp)


def test_stormvogel_to_stormpy_and_back_mdp():
# we test it for monty hall mdp
stormvogel_mdp = examples.monty_hall.create_monty_hall_mdp()
Expand Down Expand Up @@ -230,7 +231,7 @@ def test_stormpy_to_stormvogel_and_back_pomdp():
assert sparse_equal(stormpy_pomdp, new_stormpy_pomdp)



"""
def test_stormvogel_to_stormpy_and_back_ma():
# we create a stormpy representation of an example ma
stormvogel_ma = examples.simple_ma.create_simple_ma()
Expand All @@ -241,6 +242,7 @@ def test_stormvogel_to_stormpy_and_back_ma():
# print(new_stormvogel_ma)
assert new_stormvogel_ma == stormvogel_ma
"""


def test_stormpy_to_stormvogel_and_back_ma():
Expand All @@ -254,4 +256,3 @@ def test_stormpy_to_stormvogel_and_back_ma():
# print(new_stormpy_ma)

assert sparse_equal(stormpy_ma, new_stormpy_ma)

0 comments on commit 29ba03e

Please sign in to comment.