Merge pull request #1198 from mkoura/xfail_on_issue_3859
XFAIL on node issue #3859
XFAIL on node issue #3859
if len(stake_pool_ids) > 200:
pytest.skip("Skipping on this testnet, there's too many pools.")
ledger_state = clusterlib_utils.get_ledger_state(cluster_obj=cluster)
# TODO: xfail for node issue #3859
try:
ledger_state = clusterlib_utils.get_ledger_state(cluster_obj=cluster)
except AssertionError as err:
if "Invalid numeric literal at line" in str(err):
pytest.xfail("expected JSON, got CBOR - see node issue #3859")
raise
clusterlib_utils.save_ledger_state(
cluster_obj=cluster,
state_name=temp_template,
Refactor for memory initialisation
...moved some test specs into "TxConstraints directory.
Looks like a copy-paste error from the shell config above.
Fixed check-stylish on ubuntu.
feat!: replace `NetworkInfoProvider.timeSettings` with `eraSummaries`
Monomorphise return type of toPureEpochInfo
3428: Bump cardano-node to 1.35.3-rc1 r=sevanspowell a=sevanspowell - Bump dependencies: - cardano-node to 1.35.3-rc1 - hw-aeson to match cardano-node - hedgehog-extras to match cardano-node - Update compatibility matrix. ### Comments Changelogs: - [API](https://github.com/input-output-hk/cardano-node/blob/release/1.35/cardano-api/ChangeLog.md) - [CLI](https://github.com/input-output-hk/cardano-node/blob/release/1.35/cardano-cli/ChangeLog.md) - [Node](https://github.com/input-output-hk/cardano-node/blob/release/1.35/cardano-node/ChangeLog.md) - [Compare v1.35.3-testnetonly and v1.35.3-rc1](https://github.com/input-output-hk/cardano-node/compare/1.35.3-testnetonly...1.35.3-rc1) ### Issue Number ADP-2123 Co-authored-by: Samuel Evans-Powell <[email protected]>