Browse Source

Update for MMGen Wallet 15.1.dev6

The MMGen Project 1 month ago
parent
commit
30772b3699

+ 1 - 1
MANIFEST.in

@@ -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/*/*

+ 1 - 1
mmgen_node_tools/data/version

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

+ 1 - 1
setup.cfg

@@ -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
 

+ 7 - 1
test/init.sh

@@ -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

+ 0 - 0
test/unit_tests_d/ut_BlocksInfo.py → test/modtest_d/ut_BlocksInfo.py


+ 0 - 0
test/unit_tests_d/ut_dep.py → test/modtest_d/ut_dep.py


+ 6 - 6
test/test-release.d/cfg.sh

@@ -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"