update for MMGen Wallet v16.1.dev4

This commit is contained in:
The MMGen Project 2025-10-03 10:31:49 +00:00
commit 0bad23b77b
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
4 changed files with 11 additions and 7 deletions

View file

@ -1 +1 @@
3.6.dev0
3.6.dev1

View file

@ -37,7 +37,7 @@ python_requires = >=3.11
include_package_data = True
install_requires =
mmgen-wallet>=16.1.dev3
mmgen-wallet>=16.1.dev4
pyyaml
yahooquery

View file

@ -12,13 +12,17 @@
test.cmdtest_d.include.cfg: configuration data for cmdtest.py
"""
from collections import namedtuple
cmd_groups_altcoin = []
gd = namedtuple('cmd_groups_data', ['clsname', 'params'])
cmd_groups_dfl = {
'main': ('CmdTestMain',{}),
'helpscreens': ('CmdTestHelp',{'modname':'misc','full_data':True}),
'scripts': ('CmdTestScripts',{'modname':'misc'}),
'regtest': ('CmdTestRegtest',{}),
'main': gd('CmdTestMain', {}),
'helpscreens': gd('CmdTestHelp', {'modname': 'misc', 'full_data': True}),
'scripts': gd('CmdTestScripts', {'modname': 'misc'}),
'regtest': gd('CmdTestRegtest', {}),
}
cmd_groups_extra = {}

View file

@ -125,7 +125,7 @@ class CmdTestScripts(CmdTestBase):
if not cfg.skipping_deps:
t.expect('Creating')
t.expect('Creating')
ret = t.expect(['proxy host could not be resolved', 'ProxyError'])
ret = t.expect(['proxy host could not be resolved', 'unexpected keyword'])
t.exit_val = 1 if ret else 3
return t