Staging Partner Chains Tests #149
Annotations
3 errors
Failed Test: tests/committee/test_permissioned_registrations.py::test_add_permissioned_candidate
tests/committee/test_permissioned_registrations.py::test_add_permissioned_candidate: The test failed in the call phase due to an exception - src/sidechain_main_cli.py:208: in handle_response
response = json.loads(json_part)
/usr/local/lib/python3.10/json/__init__.py:346: in loads
return _default_decoder.decode(s)
/usr/local/lib/python3.10/json/decoder.py:337: in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
/usr/local/lib/python3.10/json/decoder.py:353: in raw_decode
obj, end = self.scan_once(s, idx)
E json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
During handling of the above exception, another exception occurred:
tests/committee/test_permissioned_registrations.py:31: in test_add_permissioned_candidate
raise e
tests/committee/test_permissioned_registrations.py:26: in test_add_permissioned_candidate
result, next_status_epoch = api.add_permissioned_candidate(permissioned_candidate.name)
src/substrate_api.py:606: in add_permissioned_candidate
txId, next_status_epoch = self.sidechain_main_cli.update_permissioned_candidates(
src/sidechain_main_cli.py:188: in update_permissioned_candidates
response = self.handle_response(result)
src/sidechain_main_cli.py:212: in handle_response
raise SidechainMainCliException(result.stdout)
E src.sidechain_main_cli.SidechainMainCliException: [INFO] 2025-01-29T04:12:30.629Z balanceTxWithConstraints: Wallet.getWalletUtxos
E [WARN] 2025-01-29T04:12:30.905Z Some of the collateral UTxOs returned by the wallet were marked as non-spendable and ignored
E 1fd4a3df3e0bd48dd189878bc8e4d7419fea24c8669c84019609c897adc40f09#0:
E Script Reference: (PlutusScriptRef (PlutusScript (Tuple (hexToByteArrayUnsafe "59072301000033233223222253232335332232353232325333573466e1d20000021323232323232332212330010030023232325333573466e1d2000002132323232323232323232332323233323333323332332332222222222221233333333333300100d00c00b00a00900800700600500400300230013574202460026ae84044c00c8c8c8c94ccd5cd19b87480000084cc8848cc00400c008c070d5d080098029aba135744002260489201035054310035573c0046aae74004dd5000998018009aba100f23232325333573466e1d20000021323232333322221233330010050040030023232325333573466e1d20000021332212330010030023020357420026600803e6ae84d5d100089814a481035054310035573c0046aae74004dd51aba1004300835742006646464a666ae68cdc3a4000004224440062a666ae68cdc3a4004004264244460020086eb8d5d08008a999ab9a3370e9002001099091118010021aba100113029491035054310035573c0046aae74004dd51aba10023300175c6ae84d5d1001111919192999ab9a3370e900100108910008a999ab9a3370e9000001099091180100198029aba10011302a491035054310035573c0046aae74004dd50009aba20013574400226046921035054310035573c0046aae74004dd500098009aba100d30013574201860046004eb4cc00404cd5d080519980200a3ad35742012646464a666ae68cdc3a40000042646466442466002006004646464a666ae68cdc3a40000042664424660020060046600aeb4d5d080098021aba1357440022604c921035054310035573c0046aae74004dd51aba10033232325333573466e1d20000021332212330010030023300575a6ae84004c010d5d09aba2001130264901035054310035573c0046aae74004dd51aba1357440064646464a666ae68cdc3a400000420482a666ae68cdc3a4004004204a2604c921035054310035573c0046aae74004dd5000911919192999ab9a3370e9000001089110010a999ab9a3370e90010010990911180180218029aba100115333573466e1d20040021122200113026491035054310035573c0046aae74004dd500089810a49035054310035573c0046aae74004dd51aba10083300175c6ae8401c8c88c008dd60009813111999aab9f0012028233502730043574200460066ae88008084ccc00c044008d5d0802998008011aba1004300275c40024464460046eac004c09088cccd55cf800901311919a8131991091980080180118031aab9d001300535573c00260086ae8800cd5d080100f98099aba1357440026ae88004d5d10009aba2001357440026ae88004d5d10009aba2001357440026ae88004d5d100089808249035054310035573c0046aae74004dd51aba10073001357426ae8801c8c8c8c94ccd5cd19b87480000084c848888c00c014dd71aba100115333573466e1d20020021321222230010053008357420022a666ae68cdc3a400800426424444600400a600c6ae8400454ccd5cd19b87480180084c848888c010014c014d5d080089808249035054310035573c0046aae74004dd500091919192999ab9a3370e900000109909111111180280
|
Failed Test: tests/committee/test_permissioned_registrations.py::test_remove_permissioned_candidate
tests/committee/test_permissioned_registrations.py::test_remove_permissioned_candidate: The test failed in the call phase due to an exception - src/sidechain_main_cli.py:208: in handle_response
response = json.loads(json_part)
/usr/local/lib/python3.10/json/__init__.py:346: in loads
return _default_decoder.decode(s)
/usr/local/lib/python3.10/json/decoder.py:337: in decode
obj, end = self.raw_decode(s, idx=_w(s, 0).end())
/usr/local/lib/python3.10/json/decoder.py:353: in raw_decode
obj, end = self.scan_once(s, idx)
E json.decoder.JSONDecodeError: Expecting property name enclosed in double quotes: line 1 column 3 (char 2)
During handling of the above exception, another exception occurred:
tests/committee/test_permissioned_registrations.py:84: in test_remove_permissioned_candidate
raise e
tests/committee/test_permissioned_registrations.py:79: in test_remove_permissioned_candidate
result, next_status_epoch = api.remove_permissioned_candidate(permissioned_candidate.name)
src/substrate_api.py:621: in remove_permissioned_candidate
txId, next_status_epoch = self.sidechain_main_cli.update_permissioned_candidates(
src/sidechain_main_cli.py:188: in update_permissioned_candidates
response = self.handle_response(result)
src/sidechain_main_cli.py:212: in handle_response
raise SidechainMainCliException(result.stdout)
E src.sidechain_main_cli.SidechainMainCliException: [INFO] 2025-01-29T04:12:42.930Z balanceTxWithConstraints: Wallet.getWalletUtxos
E [WARN] 2025-01-29T04:12:43.465Z Some of the collateral UTxOs returned by the wallet were marked as non-spendable and ignored
E 1fd4a3df3e0bd48dd189878bc8e4d7419fea24c8669c84019609c897adc40f09#0:
E Script Reference: (PlutusScriptRef (PlutusScript (Tuple (hexToByteArrayUnsafe "59072301000033233223222253232335332232353232325333573466e1d20000021323232323232332212330010030023232325333573466e1d2000002132323232323232323232332323233323333323332332332222222222221233333333333300100d00c00b00a00900800700600500400300230013574202460026ae84044c00c8c8c8c94ccd5cd19b87480000084cc8848cc00400c008c070d5d080098029aba135744002260489201035054310035573c0046aae74004dd5000998018009aba100f23232325333573466e1d20000021323232333322221233330010050040030023232325333573466e1d20000021332212330010030023020357420026600803e6ae84d5d100089814a481035054310035573c0046aae74004dd51aba1004300835742006646464a666ae68cdc3a4000004224440062a666ae68cdc3a4004004264244460020086eb8d5d08008a999ab9a3370e9002001099091118010021aba100113029491035054310035573c0046aae74004dd51aba10023300175c6ae84d5d1001111919192999ab9a3370e900100108910008a999ab9a3370e9000001099091180100198029aba10011302a491035054310035573c0046aae74004dd50009aba20013574400226046921035054310035573c0046aae74004dd500098009aba100d30013574201860046004eb4cc00404cd5d080519980200a3ad35742012646464a666ae68cdc3a40000042646466442466002006004646464a666ae68cdc3a40000042664424660020060046600aeb4d5d080098021aba1357440022604c921035054310035573c0046aae74004dd51aba10033232325333573466e1d20000021332212330010030023300575a6ae84004c010d5d09aba2001130264901035054310035573c0046aae74004dd51aba1357440064646464a666ae68cdc3a400000420482a666ae68cdc3a4004004204a2604c921035054310035573c0046aae74004dd5000911919192999ab9a3370e9000001089110010a999ab9a3370e90010010990911180180218029aba100115333573466e1d20040021122200113026491035054310035573c0046aae74004dd500089810a49035054310035573c0046aae74004dd51aba10083300175c6ae8401c8c88c008dd60009813111999aab9f0012028233502730043574200460066ae88008084ccc00c044008d5d0802998008011aba1004300275c40024464460046eac004c09088cccd55cf800901311919a8131991091980080180118031aab9d001300535573c00260086ae8800cd5d080100f98099aba1357440026ae88004d5d10009aba2001357440026ae88004d5d10009aba2001357440026ae88004d5d100089808249035054310035573c0046aae74004dd51aba10073001357426ae8801c8c8c8c94ccd5cd19b87480000084c848888c00c014dd71aba100115333573466e1d20020021321222230010053008357420022a666ae68cdc3a400800426424444600400a600c6ae8400454ccd5cd19b87480180084c848888c010014c014d5d080089808249035054310035573c0046aae74004dd500091919192999ab9a3370e900000109
|
run
Process completed with exit code 1.
|
Artifacts
Produced during runtime
Name | Size | |
---|---|---|
debug_log
|
918 KB |
|