tests: Run more tests in ci.

This commit is contained in:
tecnovert
2024-01-28 00:07:07 +02:00
parent 53ceae718b
commit 30a5ea1652
7 changed files with 36 additions and 11 deletions

View File

@@ -660,7 +660,7 @@ class Test(BaseTest):
js_w2 = read_json_api(1802, 'wallets')
if float(js_w2['PART']['balance']) < 100.0:
post_json = {
'value': 100,
'value': 100.0,
'address': js_w2['PART']['deposit_address'],
'subfee': False,
}
@@ -678,8 +678,8 @@ class Test(BaseTest):
'subfee': True,
}
json_rv = read_json_api(TEST_HTTP_PORT + 2, 'wallets/part/withdraw', post_json)
wait_for_balance(test_delay_event, 'http://127.0.0.1:1802/json/wallets/part', 'balance', 10.0)
assert (len(json_rv['txid']) == 64)
wait_for_balance(test_delay_event, 'http://127.0.0.1:1802/json/wallets/part', 'balance', 10.0)
# Create prefunded ITX
ci = swap_clients[2].ci(Coins.PART)