Update for MMGen Wallet 15.1.dev6

This commit is contained in:
The MMGen Project 2024-10-18 10:33:48 +00:00
commit 30772b3699
Signed by: mmgen
GPG key ID: 3F8B1861E32B7DA2
7 changed files with 16 additions and 10 deletions

View file

@ -4,7 +4,7 @@ include mmgen_node_tools/data/*
include test/init.sh
include test/test-release.d/*.sh
include test/unit_tests_d/*.py
include test/modtest_d/*.py
include test/cmdtest_d/*.py
include test/overlay/fakemods/mmgen_node_tools/*.py
include test/ref/*/*

View file

@ -1 +1 @@
3.5.dev2
3.5.dev3

View file

@ -38,7 +38,7 @@ python_requires = >=3.9
include_package_data = True
install_requires =
mmgen-wallet>=15.1.dev3
mmgen-wallet>=15.1.dev6
pyyaml
yahooquery

View file

@ -77,6 +77,10 @@ create_dir_links() {
done
}
delete_old_stuff() {
rm -rf test/unit_tests.py
}
create_test_links() {
paths='
test/include symbolic
@ -85,7 +89,7 @@ create_test_links() {
test/__init__.py symbolic
test/clean.py symbolic
test/cmdtest.py hard
test/unit_tests.py hard
test/modtest.py hard
test/test-release.sh symbolic
test/cmdtest_d/common.py symbolic
test/cmdtest_d/ct_base.py symbolic
@ -121,6 +125,8 @@ create_test_links() {
becho 'Initializing MMGen Node Tools Test Suite'
delete_old_stuff
check_mmgen_repo || die "MMGen Wallet repository not found at $wallet_repo!"
build_mmgen_extmod

View file

@ -18,7 +18,7 @@
# mmnode-ticker OK
# mmnode-txfind -
all_tests='unit lint misc scripts btc btc_rt bch_rt ltc_rt'
all_tests='mod lint misc scripts btc btc_rt bch_rt ltc_rt'
groups_desc="
default - All tests minus the extra tests
@ -29,10 +29,10 @@ groups_desc="
"
init_groups() {
dfl_tests='unit misc scripts btc btc_rt bch_rt ltc_rt'
dfl_tests='mod misc scripts btc btc_rt bch_rt ltc_rt'
extra_tests='lint'
noalt_tests='unit misc scripts btc btc_rt'
quick_tests='unit misc scripts btc btc_rt'
noalt_tests='mod misc scripts btc btc_rt'
quick_tests='mod misc scripts btc btc_rt'
qskip_tests='lint bch_rt ltc_rt'
}
@ -45,8 +45,8 @@ init_tests() {
- $pylint --errors-only --disable=relative-beyond-top-level test/cmdtest_d
"
d_unit="low-level subsystems"
t_unit="- $unit_tests_py"
d_mod="low-level subsystems"
t_mod="- $modtest_py"
d_misc="miscellaneous features"
t_misc="- $cmdtest_py helpscreens"