update for MMGen Wallet v16.1.dev4
This commit is contained in:
parent
1f12baac4c
commit
0bad23b77b
4 changed files with 11 additions and 7 deletions
|
|
@ -1 +1 @@
|
|||
3.6.dev0
|
||||
3.6.dev1
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 = {}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue