Browse Source

directory rename:

- test/cmdtest_py_d -> test/cmdtest_d
The MMGen Project 1 month ago
parent
commit
b9b289c56d

+ 1 - 1
MANIFEST.in

@@ -5,6 +5,6 @@ include mmgen_node_tools/data/*
 include test/init.sh
 include test/test-release.d/*.sh
 include test/unit_tests_d/*.py
-include test/cmdtest_py_d/*.py
+include test/cmdtest_d/*.py
 include test/overlay/fakemods/mmgen_node_tools/*.py
 include test/ref/*/*

+ 1 - 1
test/cmdtest_py_d/cfg.py → test/cmdtest_d/cfg.py

@@ -9,7 +9,7 @@
 #   https://gitlab.com/mmgen/mmgen-node-tools
 
 """
-test.cmdtest_py_d.cfg: configuration data for cmdtest.py
+test.cmdtest_d.cfg: configuration data for cmdtest.py
 """
 
 cmd_groups_altcoin = []

+ 1 - 1
test/cmdtest_py_d/ct_main.py → test/cmdtest_d/ct_main.py

@@ -9,7 +9,7 @@
 #   https://gitlab.com/mmgen/mmgen-wallet
 
 """
-cmdtest_py_d.ct_main: Basic operations tests for the cmdtest.py test suite
+cmdtest_d.ct_main: Basic operations tests for the cmdtest.py test suite
 """
 
 import sys,time

+ 1 - 1
test/cmdtest_py_d/ct_misc.py → test/cmdtest_d/ct_misc.py

@@ -9,7 +9,7 @@
 #   https://gitlab.com/mmgen/mmgen-node-tools
 
 """
-test.cmdtest_py_d.ct_misc: Miscellaneous test groups for the cmdtest.py test suite
+test.cmdtest_d.ct_misc: Miscellaneous test groups for the cmdtest.py test suite
 """
 
 import os,shutil

+ 1 - 1
test/cmdtest_py_d/ct_regtest.py → test/cmdtest_d/ct_regtest.py

@@ -9,7 +9,7 @@
 #   https://gitlab.com/mmgen/mmgen-node-tools
 
 """
-test.cmdtest_py_d.ct_regtest: Regtest tests for the cmdtest.py test suite
+test.cmdtest_d.ct_regtest: Regtest tests for the cmdtest.py test suite
 """
 
 import sys,os

+ 2 - 2
test/init.sh

@@ -87,8 +87,8 @@ create_test_links() {
 		test/cmdtest.py                hard
 		test/unit_tests.py             hard
 		test/test-release.sh           symbolic
-		test/cmdtest_py_d/common.py    symbolic
-		test/cmdtest_py_d/ct_base.py   symbolic
+		test/cmdtest_d/common.py       symbolic
+		test/cmdtest_d/ct_base.py      symbolic
 		cmds/mmgen-regtest             symbolic
 	'
 	while read path type; do

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

@@ -42,7 +42,7 @@ init_tests() {
 	t_lint="
 		- $pylint --errors-only mmgen_node_tools
 		- $pylint --errors-only test
-		- $pylint --errors-only --disable=relative-beyond-top-level test/cmdtest_py_d
+		- $pylint --errors-only --disable=relative-beyond-top-level test/cmdtest_d
 	"
 
 	d_unit="low-level subsystems"