Skip to content

Commit

Permalink
Remove checks for cluster startup scripts that were already removed
Browse files Browse the repository at this point in the history
  • Loading branch information
mkoura committed May 23, 2023
1 parent 4aa6b13 commit e6ebfd5
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions cardano_node_tests/tests/test_kes.py
Original file line number Diff line number Diff line change
Expand Up @@ -569,10 +569,7 @@ def test_opcert_invalid_kes_period(
if (
"forked blockchain" in str(exc)
and VERSIONS.transaction_era >= VERSIONS.ALONZO
and (
configuration.ENABLE_P2P # on Babbage
or configuration.SCRIPTS_DIRNAME == "alonzo_p2p" # on Alonzo
)
and configuration.ENABLE_P2P
):
pytest.xfail(str(exc))
raise
Expand Down Expand Up @@ -740,10 +737,7 @@ def test_update_valid_opcert(
if (
"forked blockchain" in str(exc)
and VERSIONS.transaction_era >= VERSIONS.ALONZO
and (
configuration.ENABLE_P2P # on Babbage
or configuration.SCRIPTS_DIRNAME == "alonzo_p2p" # on Alonzo
)
and configuration.ENABLE_P2P
):
pytest.xfail(str(exc))
raise
Expand Down Expand Up @@ -864,5 +858,5 @@ def test_negative_kes_period_arg(
blockers.GH(
issue=3788,
fixed_in="8.0.0",
message="Possible to create a op cert with a negative value for kes-period",
message="Possible to create an op cert with a negative value for kes-period",
).finish_test()

0 comments on commit e6ebfd5

Please sign in to comment.