From d9481f2b92abbe3b31bdc7de306d2428b73ff3ca Mon Sep 17 00:00:00 2001 From: oib Date: Fri, 13 Feb 2026 23:29:48 +0100 Subject: [PATCH] refactor: merge scripts/test/ into tests/verification/ Move 21 standalone verification scripts from scripts/test/ to tests/verification/. These are run-manually scripts that hit live services (not pytest suites). Consolidates all test-related files under tests/ with clear separation: - tests/cli/, tests/unit/, tests/integration/, etc. = pytest suites - tests/verification/ = standalone verification scripts --- {scripts/test => tests/verification}/README.md | 0 {scripts/test => tests/verification}/register_test_clients.py | 0 {scripts/test => tests/verification}/run_test_suite.py | 0 {scripts/test => tests/verification}/run_tests.py | 0 {scripts/test => tests/verification}/test_block_import.py | 0 .../test => tests/verification}/test_block_import_complete.py | 0 {scripts/test => tests/verification}/test_coordinator.py | 0 {scripts/test => tests/verification}/test_host_miner.py | 0 {scripts/test => tests/verification}/test_minimal.py | 0 {scripts/test => tests/verification}/test_model_validation.py | 0 {scripts/test => tests/verification}/test_payment_integration.py | 0 {scripts/test => tests/verification}/test_payment_local.py | 0 {scripts/test => tests/verification}/test_simple_import.py | 0 {scripts/test => tests/verification}/test_transactions_display.py | 0 {scripts/test => tests/verification}/test_tx_import.py | 0 {scripts/test => tests/verification}/test_tx_model.py | 0 {scripts/test => tests/verification}/verify_explorer_live.py | 0 {scripts/test => tests/verification}/verify_gpu_deployment.sh | 0 {scripts/test => tests/verification}/verify_toggle_removed.py | 0 {scripts/test => tests/verification}/verify_transactions_fixed.py | 0 {scripts/test => tests/verification}/verify_windsurf_tests.py | 0 21 files changed, 0 insertions(+), 0 deletions(-) rename {scripts/test => tests/verification}/README.md (100%) rename {scripts/test => tests/verification}/register_test_clients.py (100%) rename {scripts/test => tests/verification}/run_test_suite.py (100%) rename {scripts/test => tests/verification}/run_tests.py (100%) rename {scripts/test => tests/verification}/test_block_import.py (100%) rename {scripts/test => tests/verification}/test_block_import_complete.py (100%) rename {scripts/test => tests/verification}/test_coordinator.py (100%) rename {scripts/test => tests/verification}/test_host_miner.py (100%) rename {scripts/test => tests/verification}/test_minimal.py (100%) rename {scripts/test => tests/verification}/test_model_validation.py (100%) rename {scripts/test => tests/verification}/test_payment_integration.py (100%) rename {scripts/test => tests/verification}/test_payment_local.py (100%) rename {scripts/test => tests/verification}/test_simple_import.py (100%) rename {scripts/test => tests/verification}/test_transactions_display.py (100%) rename {scripts/test => tests/verification}/test_tx_import.py (100%) rename {scripts/test => tests/verification}/test_tx_model.py (100%) rename {scripts/test => tests/verification}/verify_explorer_live.py (100%) rename {scripts/test => tests/verification}/verify_gpu_deployment.sh (100%) rename {scripts/test => tests/verification}/verify_toggle_removed.py (100%) rename {scripts/test => tests/verification}/verify_transactions_fixed.py (100%) rename {scripts/test => tests/verification}/verify_windsurf_tests.py (100%) diff --git a/scripts/test/README.md b/tests/verification/README.md similarity index 100% rename from scripts/test/README.md rename to tests/verification/README.md diff --git a/scripts/test/register_test_clients.py b/tests/verification/register_test_clients.py similarity index 100% rename from scripts/test/register_test_clients.py rename to tests/verification/register_test_clients.py diff --git a/scripts/test/run_test_suite.py b/tests/verification/run_test_suite.py similarity index 100% rename from scripts/test/run_test_suite.py rename to tests/verification/run_test_suite.py diff --git a/scripts/test/run_tests.py b/tests/verification/run_tests.py similarity index 100% rename from scripts/test/run_tests.py rename to tests/verification/run_tests.py diff --git a/scripts/test/test_block_import.py b/tests/verification/test_block_import.py similarity index 100% rename from scripts/test/test_block_import.py rename to tests/verification/test_block_import.py diff --git a/scripts/test/test_block_import_complete.py b/tests/verification/test_block_import_complete.py similarity index 100% rename from scripts/test/test_block_import_complete.py rename to tests/verification/test_block_import_complete.py diff --git a/scripts/test/test_coordinator.py b/tests/verification/test_coordinator.py similarity index 100% rename from scripts/test/test_coordinator.py rename to tests/verification/test_coordinator.py diff --git a/scripts/test/test_host_miner.py b/tests/verification/test_host_miner.py similarity index 100% rename from scripts/test/test_host_miner.py rename to tests/verification/test_host_miner.py diff --git a/scripts/test/test_minimal.py b/tests/verification/test_minimal.py similarity index 100% rename from scripts/test/test_minimal.py rename to tests/verification/test_minimal.py diff --git a/scripts/test/test_model_validation.py b/tests/verification/test_model_validation.py similarity index 100% rename from scripts/test/test_model_validation.py rename to tests/verification/test_model_validation.py diff --git a/scripts/test/test_payment_integration.py b/tests/verification/test_payment_integration.py similarity index 100% rename from scripts/test/test_payment_integration.py rename to tests/verification/test_payment_integration.py diff --git a/scripts/test/test_payment_local.py b/tests/verification/test_payment_local.py similarity index 100% rename from scripts/test/test_payment_local.py rename to tests/verification/test_payment_local.py diff --git a/scripts/test/test_simple_import.py b/tests/verification/test_simple_import.py similarity index 100% rename from scripts/test/test_simple_import.py rename to tests/verification/test_simple_import.py diff --git a/scripts/test/test_transactions_display.py b/tests/verification/test_transactions_display.py similarity index 100% rename from scripts/test/test_transactions_display.py rename to tests/verification/test_transactions_display.py diff --git a/scripts/test/test_tx_import.py b/tests/verification/test_tx_import.py similarity index 100% rename from scripts/test/test_tx_import.py rename to tests/verification/test_tx_import.py diff --git a/scripts/test/test_tx_model.py b/tests/verification/test_tx_model.py similarity index 100% rename from scripts/test/test_tx_model.py rename to tests/verification/test_tx_model.py diff --git a/scripts/test/verify_explorer_live.py b/tests/verification/verify_explorer_live.py similarity index 100% rename from scripts/test/verify_explorer_live.py rename to tests/verification/verify_explorer_live.py diff --git a/scripts/test/verify_gpu_deployment.sh b/tests/verification/verify_gpu_deployment.sh similarity index 100% rename from scripts/test/verify_gpu_deployment.sh rename to tests/verification/verify_gpu_deployment.sh diff --git a/scripts/test/verify_toggle_removed.py b/tests/verification/verify_toggle_removed.py similarity index 100% rename from scripts/test/verify_toggle_removed.py rename to tests/verification/verify_toggle_removed.py diff --git a/scripts/test/verify_transactions_fixed.py b/tests/verification/verify_transactions_fixed.py similarity index 100% rename from scripts/test/verify_transactions_fixed.py rename to tests/verification/verify_transactions_fixed.py diff --git a/scripts/test/verify_windsurf_tests.py b/tests/verification/verify_windsurf_tests.py similarity index 100% rename from scripts/test/verify_windsurf_tests.py rename to tests/verification/verify_windsurf_tests.py