Files
aitbc/dev/cache/.pytest_cache/v/cache/nodeids
aitbc 816e258d4c refactor: move brother_node development artifact to dev/test-nodes subdirectory
Development Artifact Cleanup:
 BROTHER_NODE REORGANIZATION: Moved development test node to appropriate location
- dev/test-nodes/brother_node/: Moved from root directory for better organization
- Contains development configuration, test logs, and test chain data
- No impact on production systems - purely development/testing artifact

 DEVELOPMENT ARTIFACTS IDENTIFIED:
- Chain ID: aitbc-brother-chain (test/development chain)
- Ports: 8010 (P2P) and 8011 (RPC) - different from production
- Environment: .env file with test configuration
- Logs: rpc.log and node.log from development testing session (March 15, 2026)

 ROOT DIRECTORY CLEANUP: Removed development clutter from production directory
- brother_node/ moved to dev/test-nodes/brother_node/
- Root directory now contains only production-ready components
- Development artifacts properly organized in dev/ subdirectory

DIRECTORY STRUCTURE IMPROVEMENT:
📁 dev/test-nodes/: Development and testing node configurations
🏗️ Root Directory: Clean production structure with only essential components
🧪 Development Isolation: Test environments separated from production

BENEFITS:
 Clean Production Directory: No development artifacts in root
 Better Organization: Development nodes grouped in dev/ subdirectory
 Clear Separation: Production vs development environments clearly distinguished
 Maintainability: Easier to identify and manage development components

RESULT: Successfully moved brother_node development artifact to dev/test-nodes/ subdirectory, cleaning up the root directory while preserving development testing environment for future use.
2026-03-30 17:09:06 +02:00

966 lines
95 KiB
Plaintext
Executable File

[
"apps/blockchain-node/tests/test_gossip_broadcast.py::test_broadcast_backend_decodes_cursorless_payload",
"apps/blockchain-node/tests/test_gossip_broadcast.py::test_websocket_fanout_with_broadcast_backend",
"apps/blockchain-node/tests/test_mempool.py::TestCircuitBreaker::test_half_open_after_timeout",
"apps/blockchain-node/tests/test_mempool.py::TestCircuitBreaker::test_opens_after_threshold",
"apps/blockchain-node/tests/test_mempool.py::TestCircuitBreaker::test_starts_closed",
"apps/blockchain-node/tests/test_mempool.py::TestCircuitBreaker::test_success_resets",
"apps/blockchain-node/tests/test_mempool.py::TestComputeTxHash::test_deterministic",
"apps/blockchain-node/tests/test_mempool.py::TestComputeTxHash::test_different_for_different_tx",
"apps/blockchain-node/tests/test_mempool.py::TestComputeTxHash::test_hex_prefix",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_add_and_list",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_drain_by_fee_priority",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_drain_respects_max_count",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_duplicate_ignored",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_max_size_eviction",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_min_fee_rejected",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_persistence",
"apps/blockchain-node/tests/test_mempool.py::TestDatabaseMempool::test_remove",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_add_and_list",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_drain_by_fee_priority",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_drain_respects_max_bytes",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_drain_respects_max_count",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_duplicate_ignored",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_max_size_eviction",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_min_fee_accepted",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_min_fee_rejected",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_remove",
"apps/blockchain-node/tests/test_mempool.py::TestInMemoryMempool::test_size",
"apps/blockchain-node/tests/test_mempool.py::TestInitMempool::test_init_database",
"apps/blockchain-node/tests/test_mempool.py::TestInitMempool::test_init_memory",
"apps/blockchain-node/tests/test_models.py::test_hash_validation_accepts_hex",
"apps/blockchain-node/tests/test_models.py::test_hash_validation_rejects_non_hex",
"apps/blockchain-node/tests/test_models.py::test_relationships",
"apps/blockchain-node/tests/test_observability_dashboards.py::test_generate_default_dashboards_creates_files",
"apps/blockchain-node/tests/test_observability_dashboards.py::test_register_exporters_tracks_names",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncAppend::test_append_sequential",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncAppend::test_append_to_empty_chain",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncAppend::test_append_with_transactions",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncAppend::test_duplicate_rejected",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncAppend::test_gap_detected",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncAppend::test_stale_block_rejected",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncConflictResolution::test_fork_at_same_height_rejected",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncConflictResolution::test_sync_status",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncSignatureValidation::test_trusted_proposer_accepted_on_import",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncSignatureValidation::test_untrusted_proposer_rejected_on_import",
"apps/blockchain-node/tests/test_sync.py::TestChainSyncSignatureValidation::test_validation_disabled",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_add_remove_trusted",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_invalid_hash_format",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_invalid_hash_length",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_missing_proposer",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_missing_required_field",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_trusted_proposer_accepted",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_untrusted_proposer_rejected",
"apps/blockchain-node/tests/test_sync.py::TestProposerSignatureValidator::test_valid_block",
"apps/blockchain-node/tests/test_sync.py::TestSyncMetrics::test_accepted_block_increments_metrics",
"apps/blockchain-node/tests/test_sync.py::TestSyncMetrics::test_duplicate_increments_metrics",
"apps/blockchain-node/tests/test_sync.py::TestSyncMetrics::test_fork_increments_metrics",
"apps/blockchain-node/tests/test_sync.py::TestSyncMetrics::test_rejected_block_increments_metrics",
"apps/blockchain-node/tests/test_websocket.py::test_blocks_websocket_high_volume_load",
"apps/blockchain-node/tests/test_websocket.py::test_blocks_websocket_multiple_subscribers_receive_all_payloads",
"apps/blockchain-node/tests/test_websocket.py::test_blocks_websocket_stream",
"apps/blockchain-node/tests/test_websocket.py::test_transactions_websocket_cleans_up_on_disconnect",
"apps/coordinator-api/src/app/services/test_service.py::test_marketplace",
"apps/coordinator-api/src/app/services/test_service.py::test_multimodal",
"apps/coordinator-api/src/app/services/test_service.py::test_openclaw",
"apps/coordinator-api/test_health_endpoints.py::test_deep_health",
"apps/coordinator-api/test_health_endpoints.py::test_service_health",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAdaptiveLearningSystems::test_adaptive_model_selection",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAdaptiveLearningSystems::test_continuous_learning_algorithms",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAdaptiveLearningSystems::test_knowledge_transfer_mechanisms",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAdaptiveLearningSystems::test_performance_feedback_loops",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAdvancedAIAgentsIntegration::test_adaptive_learning_integration",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAdvancedAIAgentsIntegration::test_end_to_end_multimodal_workflow",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAdvancedAIAgentsIntegration::test_performance_validation",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAutonomousOptimization::test_continuous_improvement_loops",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAutonomousOptimization::test_performance_prediction_models",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAutonomousOptimization::test_resource_management_optimization",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestAutonomousOptimization::test_self_optimization_algorithms",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestCollaborativeAgentCoordination::test_agent_communication_protocols",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestCollaborativeAgentCoordination::test_distributed_consensus_mechanisms",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestCollaborativeAgentCoordination::test_load_balancing_strategies",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestCollaborativeAgentCoordination::test_multi_agent_task_decomposition",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestMultiModalAgentArchitecture::test_cross_modal_attention_mechanisms",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestMultiModalAgentArchitecture::test_modality_specific_optimization",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestMultiModalAgentArchitecture::test_performance_benchmarks",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestMultiModalAgentArchitecture::test_unified_multimodal_processing_pipeline",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestPerformanceBenchmarks::test_adaptive_learning_performance",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestPerformanceBenchmarks::test_autonomous_optimization_performance",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestPerformanceBenchmarks::test_collaborative_coordination_performance",
"apps/coordinator-api/tests/test_advanced_ai_agents.py::TestPerformanceBenchmarks::test_multimodal_performance_benchmarks",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentDeploymentManager::test_create_deployment_config",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentDeploymentManager::test_deploy_agent_workflow",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentDeploymentManager::test_deployment_health_monitoring",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentDeploymentManager::test_deployment_rollback",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentDeploymentManager::test_deployment_scaling",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentIntegrationManager::test_zk_integration_with_failures",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentIntegrationManager::test_zk_system_integration",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentMonitoringManager::test_alerting_rules_creation",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentMonitoringManager::test_deployment_metrics_collection",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentProductionManager::test_production_deployment",
"apps/coordinator-api/tests/test_agent_integration.py::TestAgentProductionManager::test_production_deployment_with_failures",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAIAgentOrchestrator::test_circular_dependency_detection",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAIAgentOrchestrator::test_execution_status_retrieval",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAIAgentOrchestrator::test_step_execution_order",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAIAgentOrchestrator::test_workflow_execution_request",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentAPIEndpoints::test_create_workflow_endpoint",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentAPIEndpoints::test_execute_workflow_endpoint",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentAPIEndpoints::test_get_execution_status_endpoint",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentAPIEndpoints::test_list_workflows_endpoint",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentStateManager::test_create_execution",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentStateManager::test_update_execution_status",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentVerifier::test_basic_verification",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentVerifier::test_basic_verification_failure",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentVerifier::test_full_verification",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentWorkflowCreation::test_create_workflow",
"apps/coordinator-api/tests/test_agent_orchestration.py::TestAgentWorkflowCreation::test_workflow_steps_creation",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentAuditor::test_cryptographic_hashing",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentAuditor::test_log_basic_event",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentAuditor::test_risk_score_calculation",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSandboxManager::test_create_sandbox_environment",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSandboxManager::test_sandbox_cleanup",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSandboxManager::test_sandbox_monitoring",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSandboxManager::test_security_level_sandbox_config",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSandboxManager::test_workflow_requirements_customization",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSecurityManager::test_create_security_policy",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSecurityManager::test_execution_security_monitoring",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentSecurityManager::test_workflow_security_validation",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentTrustManager::test_create_trust_score",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentTrustManager::test_reputation_score_calculation",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentTrustManager::test_security_violation_impact",
"apps/coordinator-api/tests/test_agent_security.py::TestAgentTrustManager::test_trust_score_calculation",
"apps/coordinator-api/tests/test_billing.py::TestAdjustQuota::test_adjust_quota_negative_raises",
"apps/coordinator-api/tests/test_billing.py::TestAdjustQuota::test_adjust_quota_no_active_raises",
"apps/coordinator-api/tests/test_billing.py::TestAdjustQuota::test_adjust_quota_updates_limit",
"apps/coordinator-api/tests/test_billing.py::TestApplyCharge::test_charge_decreases_balance",
"apps/coordinator-api/tests/test_billing.py::TestApplyCharge::test_charge_insufficient_balance_raises",
"apps/coordinator-api/tests/test_billing.py::TestApplyCharge::test_charge_unknown_tenant_raises",
"apps/coordinator-api/tests/test_billing.py::TestApplyCharge::test_charge_zero_raises",
"apps/coordinator-api/tests/test_billing.py::TestApplyCredit::test_credit_increases_balance",
"apps/coordinator-api/tests/test_billing.py::TestApplyCredit::test_credit_unknown_tenant_raises",
"apps/coordinator-api/tests/test_billing.py::TestApplyCredit::test_credit_zero_or_negative_raises",
"apps/coordinator-api/tests/test_billing.py::TestExtractFromToken::test_invalid_signature_returns_none",
"apps/coordinator-api/tests/test_billing.py::TestExtractFromToken::test_malformed_token_returns_none",
"apps/coordinator-api/tests/test_billing.py::TestExtractFromToken::test_missing_tenant_id_returns_none",
"apps/coordinator-api/tests/test_billing.py::TestExtractFromToken::test_valid_token_returns_claims",
"apps/coordinator-api/tests/test_billing.py::TestGenerateMonthlyInvoices::test_generates_for_active_tenants_with_usage",
"apps/coordinator-api/tests/test_billing.py::TestGenerateMonthlyInvoices::test_skips_inactive_tenants",
"apps/coordinator-api/tests/test_billing.py::TestGenerateMonthlyInvoices::test_skips_tenants_without_usage",
"apps/coordinator-api/tests/test_billing.py::TestProcessPendingEvents::test_empty_queue_returns_zero",
"apps/coordinator-api/tests/test_billing.py::TestProcessPendingEvents::test_processes_credit_and_charge_events",
"apps/coordinator-api/tests/test_billing.py::TestResetDailyQuotas::test_does_not_reset_active_quotas",
"apps/coordinator-api/tests/test_billing.py::TestResetDailyQuotas::test_resets_expired_daily_quotas",
"apps/coordinator-api/tests/test_client_receipts.py::test_receipt_endpoint_returns_signed_receipt",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernancePerformance::test_community_growth_metrics",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernancePerformance::test_developer_ecosystem_metrics",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernancePerformance::test_governance_efficiency",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernancePerformance::test_governance_participation_metrics",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernancePerformance::test_research_productivity_metrics",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernanceValidation::test_future_readiness",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernanceValidation::test_governance_maturity_assessment",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernanceValidation::test_phase_8_success_criteria",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityGovernanceValidation::test_sustainability_metrics",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityInnovation::test_community_feedback_system",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityInnovation::test_continuous_improvement",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityInnovation::test_innovation_challenges",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityInnovation::test_knowledge_sharing_platform",
"apps/coordinator-api/tests/test_community_governance.py::TestCommunityInnovation::test_mentorship_program",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_dao_structure_implementation",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_delegated_voting",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_governance_performance",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_governance_security",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_governance_transparency",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_proposal_lifecycle",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_proposal_system",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_token_based_voting_mechanisms",
"apps/coordinator-api/tests/test_community_governance.py::TestDecentralizedGovernance::test_voting_interface",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_developer_analytics",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_developer_incentive_programs",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_developer_marketplace",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_developer_onboarding",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_developer_support_channels",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_developer_testing_framework",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_developer_tools_and_sdks",
"apps/coordinator-api/tests/test_community_governance.py::TestDeveloperEcosystem::test_documentation_and_tutorials",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_areas",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_collaboration_platform",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_community_engagement",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_funding_mechanism",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_impact_measurement",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_milestones",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_publication_system",
"apps/coordinator-api/tests/test_community_governance.py::TestResearchLabs::test_research_quality_assurance",
"apps/coordinator-api/tests/test_components.py::TestConfigurationValidation::test_environment_based_configuration",
"apps/coordinator-api/tests/test_components.py::TestConfigurationValidation::test_rate_limit_format_validation",
"apps/coordinator-api/tests/test_components.py::TestErrorHandlingComponents::test_429_error_response_structure",
"apps/coordinator-api/tests/test_components.py::TestErrorHandlingComponents::test_error_response_model",
"apps/coordinator-api/tests/test_components.py::TestErrorHandlingComponents::test_validation_error_structure",
"apps/coordinator-api/tests/test_components.py::TestLoggingIntegration::test_audit_log_configuration",
"apps/coordinator-api/tests/test_components.py::TestLoggingIntegration::test_shared_logging_import",
"apps/coordinator-api/tests/test_components.py::TestRateLimitTierStrategy::test_security_focused_limits",
"apps/coordinator-api/tests/test_components.py::TestRateLimitTierStrategy::test_tiered_rate_limits",
"apps/coordinator-api/tests/test_components.py::TestRateLimitingComponents::test_rate_limit_decorator_creation",
"apps/coordinator-api/tests/test_components.py::TestRateLimitingComponents::test_rate_limit_default_values",
"apps/coordinator-api/tests/test_components.py::TestRateLimitingComponents::test_settings_rate_limit_configuration",
"apps/coordinator-api/tests/test_components.py::TestRateLimitingComponents::test_slowapi_import",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestAccessController::test_audit_access",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestAccessController::test_client_access_own_data",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestAccessController::test_miner_access_assigned_data",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestAccessController::test_unauthorized_access",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestAuditLogger::test_export_logs",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestAuditLogger::test_log_access",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestAuditLogger::test_log_key_operation",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestConfidentialTransactionAPI::test_access_confidential_data",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestConfidentialTransactionAPI::test_create_confidential_transaction",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestConfidentialTransactionAPI::test_register_key",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestConfidentialTransactionFlow::test_full_confidential_flow",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestEncryptionService::test_audit_decrypt",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestEncryptionService::test_encrypt_decrypt_success",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestEncryptionService::test_encrypt_no_participants",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestKeyManager::test_generate_key_pair",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestKeyManager::test_get_public_key",
"apps/coordinator-api/tests/test_confidential_transactions.py::TestKeyManager::test_key_rotation",
"apps/coordinator-api/tests/test_edge_gpu.py::test_metrics_ingest_and_list",
"apps/coordinator-api/tests/test_edge_gpu.py::test_profiles_seed_and_filter",
"apps/coordinator-api/tests/test_edge_gpu_integration.py::TestEdgeGPUIntegration::test_consumer_gpu_discovery",
"apps/coordinator-api/tests/test_edge_gpu_integration.py::TestEdgeGPUIntegration::test_consumer_gpu_profile_filtering",
"apps/coordinator-api/tests/test_edge_gpu_integration.py::TestEdgeGPUIntegration::test_edge_latency_measurement",
"apps/coordinator-api/tests/test_edge_gpu_integration.py::TestEdgeGPUIntegration::test_ollama_edge_optimization",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeConfirmPaymentEndpoint::test_confirm_payment_not_found",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeConfirmPaymentEndpoint::test_confirm_payment_not_pending",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeConfirmPaymentEndpoint::test_confirm_payment_success",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeCreatePaymentEndpoint::test_create_payment_amount_mismatch",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeCreatePaymentEndpoint::test_create_payment_invalid_amounts",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeCreatePaymentEndpoint::test_create_payment_rounding_tolerance",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeCreatePaymentEndpoint::test_create_payment_success",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeIntegration::test_complete_payment_lifecycle",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeIntegration::test_market_stats_update_after_payment",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeMarketStatsEndpoint::test_get_market_stats_empty",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeMarketStatsEndpoint::test_get_market_stats_with_payments",
"apps/coordinator-api/tests/test_exchange.py::TestExchangePaymentStatusEndpoint::test_get_payment_status_expired",
"apps/coordinator-api/tests/test_exchange.py::TestExchangePaymentStatusEndpoint::test_get_payment_status_not_found",
"apps/coordinator-api/tests/test_exchange.py::TestExchangePaymentStatusEndpoint::test_get_payment_status_success",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeRatesEndpoint::test_get_exchange_rates_success",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeWalletEndpoints::test_wallet_balance_endpoint",
"apps/coordinator-api/tests/test_exchange.py::TestExchangeWalletEndpoints::test_wallet_info_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestCrossChainBridges::test_bridge_liquidity_pools",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestCrossChainBridges::test_bridge_monitoring",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestCrossChainBridges::test_bridge_security_features",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestCrossChainBridges::test_bridge_status_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestCrossChainBridges::test_bridge_transaction_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestDAppConnectivity::test_dapp_authentication",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestDAppConnectivity::test_dapp_rate_limiting",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestDAppConnectivity::test_dapp_webhook_support",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestDAppConnectivity::test_job_submission_dapp_api",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestDAppConnectivity::test_marketplace_dapp_api",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerDataAPI::test_block_data_completeness",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerDataAPI::test_explorer_api_standardization",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerDataAPI::test_get_account_transactions_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerDataAPI::test_get_block_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerDataAPI::test_get_transaction_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerDataAPI::test_transaction_data_completeness",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationDocumentation::test_api_documentation",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationDocumentation::test_community_support",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationDocumentation::test_integration_examples",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationDocumentation::test_sdk_availability",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationPerformance::test_api_response_times",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationPerformance::test_caching_strategy",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationPerformance::test_pagination_performance",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationPerformance::test_rate_limiting_effectiveness",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationSecurity::test_api_authentication",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationSecurity::test_audit_logging",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationSecurity::test_data_privacy",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestExplorerIntegrationSecurity::test_input_validation",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestTokenAnalyticsAPI::test_receipt_based_minting_tracking",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestTokenAnalyticsAPI::test_token_analytics_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestTokenAnalyticsAPI::test_token_balance_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestTokenAnalyticsAPI::test_token_holders_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestTokenAnalyticsAPI::test_token_transfers_endpoint",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestWalletIntegration::test_wallet_balance_api",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestWalletIntegration::test_wallet_receipt_tracking",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestWalletIntegration::test_wallet_security_features",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestWalletIntegration::test_wallet_token_portfolio",
"apps/coordinator-api/tests/test_explorer_integrations.py::TestWalletIntegration::test_wallet_transaction_history",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestEnterpriseConsultingServices::test_consulting_service_portfolio",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestEnterpriseConsultingServices::test_enterprise_case_studies",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestEnterpriseConsultingServices::test_enterprise_onboarding_process",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestEnterpriseConsultingServices::test_enterprise_partnership_program",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestEnterpriseConsultingServices::test_enterprise_success_metrics",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestEnterpriseConsultingServices::test_enterprise_support_tiers",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestEnterpriseConsultingServices::test_enterprise_training_programs",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemPerformance::test_enterprise_customer_success",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemPerformance::test_global_compliance_performance",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemPerformance::test_global_ecosystem_maturity",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemPerformance::test_global_scalability_targets",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemPerformance::test_industry_adoption_metrics",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemPerformance::test_multi_region_latency_performance",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemValidation::test_ecosystem_innovation_metrics",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemValidation::test_ecosystem_sustainability",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemValidation::test_global_ecosystem_readiness",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestGlobalEcosystemValidation::test_phase_7_success_criteria",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_education_agents",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_financial_services_agents",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_healthcare_ai_agents",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_industry_compliance_automation",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_industry_performance_metrics",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_industry_solution_templates",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_legal_tech_agents",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_manufacturing_agents",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestIndustrySpecificSolutions::test_retail_agents",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_content_delivery_optimization",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_cross_border_data_compliance",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_disaster_recovery_planning",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_edge_node_management",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_geographic_load_balancing",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_global_infrastructure_setup",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_global_performance_targets",
"apps/coordinator-api/tests/test_global_ecosystem.py::TestMultiRegionDeployment::test_region_specific_optimizations",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUBook::test_book_already_booked_returns_409",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUBook::test_book_gpu",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUBook::test_book_not_found",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUDetails::test_get_details",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUDetails::test_get_details_not_found",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUList::test_filter_available",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUList::test_filter_price_max",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUList::test_filter_region",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUList::test_list_empty",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUList::test_list_returns_registered",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPURegister::test_register_gpu",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPURegister::test_register_persists",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPURelease::test_release_booked_gpu",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPURelease::test_release_not_booked_returns_400",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUReviews::test_add_review",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUReviews::test_get_reviews",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestGPUReviews::test_review_not_found_gpu",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestOrders::test_filter_orders_by_status",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestOrders::test_list_orders_after_booking",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestOrders::test_list_orders_empty",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestPricing::test_pricing_for_model",
"apps/coordinator-api/tests/test_gpu_marketplace.py::TestPricing::test_pricing_not_found",
"apps/coordinator-api/tests/test_integration.py::TestConfigurationValidation::test_api_key_validation_logic",
"apps/coordinator-api/tests/test_integration.py::TestConfigurationValidation::test_production_validation_logic",
"apps/coordinator-api/tests/test_integration.py::TestConfigurationValidation::test_secret_length_validation",
"apps/coordinator-api/tests/test_integration.py::TestDatabaseConfiguration::test_asyncpg_import",
"apps/coordinator-api/tests/test_integration.py::TestDatabaseConfiguration::test_sqlalchemy_async_import",
"apps/coordinator-api/tests/test_integration.py::TestErrorHandling::test_exception_handler_import",
"apps/coordinator-api/tests/test_integration.py::TestHealthEndpoints::test_health_check_basic",
"apps/coordinator-api/tests/test_integration.py::TestLoggingConfiguration::test_logger_functionality",
"apps/coordinator-api/tests/test_integration.py::TestLoggingConfiguration::test_logger_import",
"apps/coordinator-api/tests/test_integration.py::TestRateLimitingSetup::test_rate_limit_decorator",
"apps/coordinator-api/tests/test_integration.py::TestRateLimitingSetup::test_slowapi_import",
"apps/coordinator-api/tests/test_integration.py::TestServiceLogic::test_job_service_import",
"apps/coordinator-api/tests/test_integration.py::TestServiceLogic::test_miner_service_import",
"apps/coordinator-api/tests/test_jobs.py::test_acquire_next_job",
"apps/coordinator-api/tests/test_jobs.py::test_create_and_fetch_job",
"apps/coordinator-api/tests/test_marketplace.py::test_bid_validation",
"apps/coordinator-api/tests/test_marketplace.py::test_get_bid_details",
"apps/coordinator-api/tests/test_marketplace.py::test_list_bids_filters_by_status_and_provider",
"apps/coordinator-api/tests/test_marketplace.py::test_list_offers_filters_by_status",
"apps/coordinator-api/tests/test_marketplace.py::test_marketplace_service_list_bids_handles_limit_offset",
"apps/coordinator-api/tests/test_marketplace.py::test_marketplace_service_list_offers_handles_limit_offset",
"apps/coordinator-api/tests/test_marketplace.py::test_marketplace_stats",
"apps/coordinator-api/tests/test_marketplace.py::test_marketplace_stats_includes_bids",
"apps/coordinator-api/tests/test_marketplace.py::test_submit_bid_creates_record",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedMarketplaceFeatures::test_creator_royalty_tracking",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedMarketplaceFeatures::test_dynamic_royalty_rates",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedMarketplaceFeatures::test_royalty_dispute_resolution",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedMarketplaceFeatures::test_royalty_payment_system",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedMarketplaceFeatures::test_secondary_market_royalties",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedMarketplaceFeatures::test_sophisticated_royalty_distribution",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedModelVerification::test_automated_quality_scoring",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedModelVerification::test_compliance_checking",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedModelVerification::test_continuous_monitoring",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedModelVerification::test_performance_verification",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedModelVerification::test_quality_assurance_system",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedModelVerification::test_security_scanning",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestAdvancedModelVerification::test_verification_reporting",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceAnalytics::test_competitive_analytics",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceAnalytics::test_market_trend_analysis",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceAnalytics::test_marketplace_analytics_dashboard",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceAnalytics::test_model_performance_analytics",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceAnalytics::test_predictive_analytics",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceAnalytics::test_revenue_analytics",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceAnalytics::test_user_behavior_analytics",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementPerformance::test_data_processing_efficiency",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementPerformance::test_enhancement_cost_efficiency",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementPerformance::test_enhancement_performance_targets",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementPerformance::test_scalability_requirements",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementValidation::test_enhancement_innovation_metrics",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementValidation::test_enhancement_maturity_assessment",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementValidation::test_enhancement_sustainability",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementValidation::test_enhancement_user_experience",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestMarketplaceEnhancementValidation::test_phase_6_5_success_criteria",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestModelLicensing::test_ip_protection_mechanisms",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestModelLicensing::test_license_analytics",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestModelLicensing::test_license_compatibility",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestModelLicensing::test_license_enforcement",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestModelLicensing::test_license_templates",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestModelLicensing::test_license_transfer_system",
"apps/coordinator-api/tests/test_marketplace_enhancement.py::TestModelLicensing::test_usage_rights_management",
"apps/coordinator-api/tests/test_marketplace_health.py::test_marketplace_health_primary",
"apps/coordinator-api/tests/test_marketplace_health.py::test_marketplace_health_secondary",
"apps/coordinator-api/tests/test_miner_service.py::test_capability_constrained_assignment",
"apps/coordinator-api/tests/test_miner_service.py::test_heartbeat_updates_metadata",
"apps/coordinator-api/tests/test_miner_service.py::test_price_constraint",
"apps/coordinator-api/tests/test_miner_service.py::test_receipt_signing",
"apps/coordinator-api/tests/test_miner_service.py::test_receipt_signing_with_attestation",
"apps/coordinator-api/tests/test_miner_service.py::test_register_and_poll_inflight",
"apps/coordinator-api/tests/test_ml_zk_integration.py::TestMLZKIntegration::test_edge_gpu_api_integration",
"apps/coordinator-api/tests/test_ml_zk_integration.py::TestMLZKIntegration::test_fhe_ml_inference",
"apps/coordinator-api/tests/test_ml_zk_integration.py::TestMLZKIntegration::test_js_sdk_receipt_verification_e2e",
"apps/coordinator-api/tests/test_ml_zk_integration.py::TestMLZKIntegration::test_ml_zk_proof_generation",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestAdvancedAgentOrchestration::test_agent_collaboration_coordination",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestAdvancedAgentOrchestration::test_hybrid_execution_optimization",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestAdvancedAgentOrchestration::test_intelligent_job_offloading",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestAdvancedAgentOrchestration::test_orchestration_performance_targets",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestAdvancedAgentOrchestration::test_sophisticated_agent_skill_routing",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestEdgeComputingIntegration::test_edge_deployment_infrastructure",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestEdgeComputingIntegration::test_edge_performance_targets",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestEdgeComputingIntegration::test_edge_security_compliance",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestEdgeComputingIntegration::test_edge_specific_optimization",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestEdgeComputingIntegration::test_edge_to_cloud_coordination",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawEcosystemDevelopment::test_community_platform",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawEcosystemDevelopment::test_developer_tools_and_sdks",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawEcosystemDevelopment::test_ecosystem_metrics",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawEcosystemDevelopment::test_marketplace_solutions",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawEcosystemDevelopment::test_partnership_programs",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationPerformance::test_agent_orchestration_performance",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationPerformance::test_ecosystem_scalability",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationPerformance::test_edge_computing_performance",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationPerformance::test_integration_efficiency",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationValidation::test_competitive_advantages",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationValidation::test_future_readiness",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationValidation::test_integration_maturity_assessment",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationValidation::test_integration_sustainability",
"apps/coordinator-api/tests/test_openclaw_enhancement.py::TestOpenClawIntegrationValidation::test_phase_6_6_success_criteria",
"apps/coordinator-api/tests/test_phase8_optional_endpoints.py::test_economics_stats",
"apps/coordinator-api/tests/test_phase8_optional_endpoints.py::test_explorer_api_head",
"apps/coordinator-api/tests/test_phase8_optional_endpoints.py::test_market_stats",
"apps/coordinator-api/tests/test_phase8_tasks.py::test_agent_api_health",
"apps/coordinator-api/tests/test_phase8_tasks.py::test_blockchain_rpc_head",
"apps/coordinator-api/tests/test_phase8_tasks.py::test_multi_region_primary_health",
"apps/coordinator-api/tests/test_phase8_tasks.py::test_multi_region_secondary_health",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_circuit_simulation",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_classical_hybrid_agents",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_communication_agents",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_enhanced_algorithms",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_error_correction",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_machine_learning_agents",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_optimization_agents",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_performance_benchmarks",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumAgentProcessing::test_quantum_resource_management",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumIntegrationValidation::test_quantum_compatibility_matrix",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumIntegrationValidation::test_quantum_migration_timeline",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumIntegrationValidation::test_quantum_readiness_assessment",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumIntegrationValidation::test_quantum_success_criteria",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumMarketplaceIntegration::test_quantum_computing_resources",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumMarketplaceIntegration::test_quantum_interoperability",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumMarketplaceIntegration::test_quantum_job_submission",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumMarketplaceIntegration::test_quantum_model_marketplace",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumMarketplaceIntegration::test_quantum_model_verification",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumMarketplaceIntegration::test_quantum_pricing_model",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumMarketplaceIntegration::test_quantum_quality_assurance",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumPerformance::test_quantum_advantage_metrics",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumPerformance::test_quantum_error_rates",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumPerformance::test_quantum_resource_efficiency",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumPerformance::test_quantum_scalability",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_backward_compatibility",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_classic_mceliece_encryption",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_crystals_kyber_implementation",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_forward_secrecy_maintenance",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_hybrid_classical_quantum_protocols",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_layered_security_approach",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_migration_path_planning",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_mitigation_strategies",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_performance_optimization",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_quantum_threat_assessment",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_rainbow_signatures",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_risk_analysis_framework",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumResistantCryptography::test_sphincs_signatures",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumSecurity::test_quantum_cryptography_standards",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumSecurity::test_quantum_key_distribution",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumSecurity::test_quantum_random_number_generation",
"apps/coordinator-api/tests/test_quantum_integration.py::TestQuantumSecurity::test_quantum_threat_monitoring",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitExceptionHandler::test_error_response_structure_for_rate_limit",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitExceptionHandler::test_rate_limit_error_response_serialization",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitExceptionHandler::test_rate_limit_exception_creation",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitIntegration::test_limiter_creation",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitIntegration::test_rate_limit_decorator_creation",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitIntegration::test_rate_limit_environment_configuration",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitMetrics::test_rate_limit_configuration_logging",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitMetrics::test_rate_limit_hit_logging",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitPerformance::test_lambda_function_performance",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitPerformance::test_rate_limit_decorator_performance",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitSecurity::test_admin_operation_rate_limits",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitSecurity::test_financial_operation_rate_limits",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitSecurity::test_rate_limit_prevents_brute_force",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitingEnforcement::test_rate_limit_configuration_loading",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitingEnforcement::test_rate_limit_format_validation",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitingEnforcement::test_rate_limit_lambda_functions",
"apps/coordinator-api/tests/test_rate_limiting_comprehensive.py::TestRateLimitingEnforcement::test_tiered_rate_limit_strategy",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_batch_verification",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_double_spend_prevention",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_full_flow_simulation",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_proof_generation",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_proof_verification_rejects_zero_hash",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_proof_verification_stub",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_receipt_hash_generation",
"apps/coordinator-api/tests/test_zk_integration.py::TestZKReceiptFlow::test_settlement_amount_calculation",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationImplementation::test_optimization_tools",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationImplementation::test_optimization_validation",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationImplementation::test_performance_benchmarks",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationImplementation::test_phase_1_implementations",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationImplementation::test_phase_2_implementations",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationRecommendations::test_circuit_architecture_fixes",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationRecommendations::test_circuit_size_prediction",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationRecommendations::test_gas_cost_optimization",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationRecommendations::test_memory_optimization_techniques",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestOptimizationRecommendations::test_performance_optimization_strategies",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestPerformanceBaselines::test_circuit_complexity_metrics",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestPerformanceBaselines::test_compilation_performance_scaling",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestPerformanceBaselines::test_critical_design_issues",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestPerformanceBaselines::test_infrastructure_readiness",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationPerformance::test_optimization_overhead",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationPerformance::test_optimization_performance_targets",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationPerformance::test_optimization_stability",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationPerformance::test_scalability_improvements",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationValidation::test_optimization_documentation",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationValidation::test_optimization_future_readiness",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationValidation::test_optimization_maturity",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationValidation::test_optimization_success_criteria",
"apps/coordinator-api/tests/test_zk_optimization_findings.py::TestZKOptimizationValidation::test_optimization_sustainability",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofIntegration::test_receipt_creation_with_zk_proof",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofIntegration::test_settlement_with_zk_proof",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofPerformance::test_proof_generation_time",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofPerformance::test_proof_verification_time",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_generate_proof_basic_privacy",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_generate_proof_enhanced_privacy",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_generate_proof_invalid_privacy_level",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_generate_proof_service_disabled",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_hash_receipt",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_serialize_receipt",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_service_initialization_with_files",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_service_initialization_without_files",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_verify_proof_failure",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_verify_proof_service_disabled",
"apps/coordinator-api/tests/test_zk_proofs.py::TestZKProofService::test_verify_proof_success",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestCircuitArchitectureOptimization::test_advanced_cryptographic_primitives",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestCircuitArchitectureOptimization::test_batch_verification",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestCircuitArchitectureOptimization::test_circuit_templates",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestCircuitArchitectureOptimization::test_memory_optimization",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestCircuitArchitectureOptimization::test_modular_circuit_design",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestCircuitArchitectureOptimization::test_recursive_proof_composition",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestPerformanceBenchmarking::test_circuit_complexity_analysis",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestPerformanceBenchmarking::test_circuit_size_prediction",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestPerformanceBenchmarking::test_gas_cost_analysis",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestPerformanceBenchmarking::test_proof_generation_optimization",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLErrorHandling::test_circuit_compilation_errors",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLErrorHandling::test_proof_generation_failures",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLErrorHandling::test_verification_failures",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLInfrastructureIntegration::test_coordinator_api_integration",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLInfrastructureIntegration::test_gpu_integration",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLInfrastructureIntegration::test_marketplace_integration",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLInfrastructureIntegration::test_token_integration",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLIntegration::test_circuit_compilation_pipeline",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLIntegration::test_fhe_service_integration",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLIntegration::test_performance_monitoring",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLIntegration::test_zk_proof_service_integration",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLPerformanceValidation::test_compilation_performance_targets",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLPerformanceValidation::test_gas_efficiency_validation",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLPerformanceValidation::test_memory_usage_validation",
"apps/coordinator-api/tests/test_zkml_optimization.py::TestZKMLPerformanceValidation::test_proof_size_optimization",
"apps/zk-circuits/test/test_ml_circuits.py::test_circuit_performance",
"apps/zk-circuits/test/test_ml_circuits.py::test_ml_inference_circuit",
"packages/py/aitbc-core/tests/test_logging.py::TestGetAuditLogger::test_audit_logger_level_info_by_default",
"packages/py/aitbc-core/tests/test_logging.py::TestGetAuditLogger::test_caching_consistent",
"packages/py/aitbc-core/tests/test_logging.py::TestGetAuditLogger::test_has_handlers_on_first_call",
"packages/py/aitbc-core/tests/test_logging.py::TestGetAuditLogger::test_returns_logger_with_audit_suffix",
"packages/py/aitbc-core/tests/test_logging.py::TestGetAuditLogger::test_returns_logger_with_suffix",
"packages/py/aitbc-core/tests/test_logging.py::TestGetLogger::test_returns_existing_logger",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_adds_console_handler",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_file_handler",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_file_handler_added_when_requested",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_formatter_is_structured",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_has_console_handler",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_idempotent",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_no_propagation",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_removes_existing_handlers",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_returns_logger_with_correct_level",
"packages/py/aitbc-core/tests/test_logging.py::TestSetupLogger::test_returns_logger_with_correct_name",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_basic_format",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_exception_info",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_extra_fields",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_format_basic",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_format_non_serializable_extra",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_format_with_exception",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_format_with_extra_fields",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_format_with_stack_info",
"packages/py/aitbc-core/tests/test_logging.py::TestStructuredLogFormatter::test_non_serializable_extra",
"packages/py/aitbc-core/tests/test_logging.py::test_full_logging_output",
"tests/cli/test_admin.py::TestAdminCommands::test_analytics",
"tests/cli/test_admin.py::TestAdminCommands::test_api_error_handling",
"tests/cli/test_admin.py::TestAdminCommands::test_deactivate_miner",
"tests/cli/test_admin.py::TestAdminCommands::test_delete_job_cancelled",
"tests/cli/test_admin.py::TestAdminCommands::test_delete_job_confirmed",
"tests/cli/test_admin.py::TestAdminCommands::test_execute_custom_action",
"tests/cli/test_admin.py::TestAdminCommands::test_job_details_success",
"tests/cli/test_admin.py::TestAdminCommands::test_jobs_with_filter",
"tests/cli/test_admin.py::TestAdminCommands::test_logs_with_level",
"tests/cli/test_admin.py::TestAdminCommands::test_maintenance_cleanup",
"tests/cli/test_admin.py::TestAdminCommands::test_miners_list",
"tests/cli/test_admin.py::TestAdminCommands::test_prioritize_job",
"tests/cli/test_admin.py::TestAdminCommands::test_status_success",
"tests/cli/test_auth.py::TestAuthCommands::test_import_env_not_set",
"tests/cli/test_auth.py::TestAuthCommands::test_import_env_success",
"tests/cli/test_auth.py::TestAuthCommands::test_keys_create",
"tests/cli/test_auth.py::TestAuthCommands::test_keys_list",
"tests/cli/test_auth.py::TestAuthCommands::test_keys_revoke",
"tests/cli/test_auth.py::TestAuthCommands::test_login_invalid_key",
"tests/cli/test_auth.py::TestAuthCommands::test_login_success",
"tests/cli/test_auth.py::TestAuthCommands::test_logout_success",
"tests/cli/test_auth.py::TestAuthCommands::test_refresh_no_key",
"tests/cli/test_auth.py::TestAuthCommands::test_refresh_success",
"tests/cli/test_auth.py::TestAuthCommands::test_status_authenticated",
"tests/cli/test_auth.py::TestAuthCommands::test_status_not_authenticated",
"tests/cli/test_auth.py::TestAuthCommands::test_token_hidden",
"tests/cli/test_auth.py::TestAuthCommands::test_token_not_found",
"tests/cli/test_auth.py::TestAuthCommands::test_token_show",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_api_error_handling",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_block_details",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_blocks_success",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_info",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_node_status",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_peers",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_supply",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_sync_status",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_transaction",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_validator_details",
"tests/cli/test_blockchain.py::TestBlockchainCommands::test_validators",
"tests/cli/test_cli_integration.py::TestAdminCommands::test_list_jobs",
"tests/cli/test_cli_integration.py::TestAdminCommands::test_list_miners",
"tests/cli/test_cli_integration.py::TestAdminCommands::test_stats",
"tests/cli/test_cli_integration.py::TestClientCommands::test_status_not_found",
"tests/cli/test_cli_integration.py::TestClientCommands::test_submit_and_cancel",
"tests/cli/test_cli_integration.py::TestClientCommands::test_submit_and_status",
"tests/cli/test_cli_integration.py::TestClientCommands::test_submit_job",
"tests/cli/test_cli_integration.py::TestEndToEnd::test_full_job_lifecycle",
"tests/cli/test_cli_integration.py::TestExplorerCommands::test_blockchain_info",
"tests/cli/test_cli_integration.py::TestExplorerCommands::test_blocks",
"tests/cli/test_cli_integration.py::TestExplorerCommands::test_receipts",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_book_and_release",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_details",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_list_after_register",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_list_empty",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_register_and_list",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_register_cli",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_review",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_gpu_reviews",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_orders_empty",
"tests/cli/test_cli_integration.py::TestMarketplaceGPUCommands::test_pricing",
"tests/cli/test_cli_integration.py::TestMinerCommands::test_heartbeat",
"tests/cli/test_cli_integration.py::TestMinerCommands::test_poll_no_jobs",
"tests/cli/test_cli_integration.py::TestMinerCommands::test_register",
"tests/cli/test_cli_integration.py::TestMinerCommands::test_status",
"tests/cli/test_cli_integration.py::TestPaymentCommands::test_payment_status_not_found",
"tests/cli/test_client.py::TestClientCommands::test_api_error_handling",
"tests/cli/test_client.py::TestClientCommands::test_blocks_success",
"tests/cli/test_client.py::TestClientCommands::test_cancel_job_success",
"tests/cli/test_client.py::TestClientCommands::test_history_with_filters",
"tests/cli/test_client.py::TestClientCommands::test_pay_command_failure",
"tests/cli/test_client.py::TestClientCommands::test_pay_command_success",
"tests/cli/test_client.py::TestClientCommands::test_payment_receipt_success",
"tests/cli/test_client.py::TestClientCommands::test_payment_status_not_found",
"tests/cli/test_client.py::TestClientCommands::test_payment_status_success",
"tests/cli/test_client.py::TestClientCommands::test_refund_failure",
"tests/cli/test_client.py::TestClientCommands::test_refund_success",
"tests/cli/test_client.py::TestClientCommands::test_status_success",
"tests/cli/test_client.py::TestClientCommands::test_submit_job_from_file",
"tests/cli/test_client.py::TestClientCommands::test_submit_job_success",
"tests/cli/test_client.py::TestClientCommands::test_submit_missing_required_args",
"tests/cli/test_config.py::TestConfigCommands::test_edit_command",
"tests/cli/test_config.py::TestConfigCommands::test_environments",
"tests/cli/test_config.py::TestConfigCommands::test_export_empty_yaml",
"tests/cli/test_config.py::TestConfigCommands::test_export_empty_yaml_yaml_format",
"tests/cli/test_config.py::TestConfigCommands::test_export_json",
"tests/cli/test_config.py::TestConfigCommands::test_export_no_config",
"tests/cli/test_config.py::TestConfigCommands::test_export_yaml",
"tests/cli/test_config.py::TestConfigCommands::test_import_config_json",
"tests/cli/test_config.py::TestConfigCommands::test_import_config_yaml",
"tests/cli/test_config.py::TestConfigCommands::test_import_merge",
"tests/cli/test_config.py::TestConfigCommands::test_import_nonexistent_file",
"tests/cli/test_config.py::TestConfigCommands::test_path_command",
"tests/cli/test_config.py::TestConfigCommands::test_path_global",
"tests/cli/test_config.py::TestConfigCommands::test_profiles_delete",
"tests/cli/test_config.py::TestConfigCommands::test_profiles_delete_cancelled",
"tests/cli/test_config.py::TestConfigCommands::test_profiles_list",
"tests/cli/test_config.py::TestConfigCommands::test_profiles_load",
"tests/cli/test_config.py::TestConfigCommands::test_profiles_save",
"tests/cli/test_config.py::TestConfigCommands::test_reset_config_cancelled",
"tests/cli/test_config.py::TestConfigCommands::test_reset_config_confirmed",
"tests/cli/test_config.py::TestConfigCommands::test_reset_no_config",
"tests/cli/test_config.py::TestConfigCommands::test_set_api_key",
"tests/cli/test_config.py::TestConfigCommands::test_set_coordinator_url",
"tests/cli/test_config.py::TestConfigCommands::test_set_invalid_key",
"tests/cli/test_config.py::TestConfigCommands::test_set_invalid_timeout",
"tests/cli/test_config.py::TestConfigCommands::test_set_timeout",
"tests/cli/test_config.py::TestConfigCommands::test_show_config",
"tests/cli/test_config.py::TestConfigCommands::test_validate_invalid_url",
"tests/cli/test_config.py::TestConfigCommands::test_validate_missing_url",
"tests/cli/test_config.py::TestConfigCommands::test_validate_no_api_key",
"tests/cli/test_config.py::TestConfigCommands::test_validate_short_api_key",
"tests/cli/test_config.py::TestConfigCommands::test_validate_valid_config",
"tests/cli/test_exchange.py::TestExchangeCreatePaymentCommand::test_create_payment_invalid_aitbc_amount",
"tests/cli/test_exchange.py::TestExchangeCreatePaymentCommand::test_create_payment_invalid_btc_amount",
"tests/cli/test_exchange.py::TestExchangeCreatePaymentCommand::test_create_payment_no_amount",
"tests/cli/test_exchange.py::TestExchangeCreatePaymentCommand::test_create_payment_rates_error",
"tests/cli/test_exchange.py::TestExchangeCreatePaymentCommand::test_create_payment_with_aitbc_amount",
"tests/cli/test_exchange.py::TestExchangeCreatePaymentCommand::test_create_payment_with_btc_amount",
"tests/cli/test_exchange.py::TestExchangeIntegration::test_complete_exchange_workflow",
"tests/cli/test_exchange.py::TestExchangeMarketStatsCommand::test_market_stats_success",
"tests/cli/test_exchange.py::TestExchangePaymentStatusCommand::test_payment_status_confirmed",
"tests/cli/test_exchange.py::TestExchangePaymentStatusCommand::test_payment_status_expired",
"tests/cli/test_exchange.py::TestExchangePaymentStatusCommand::test_payment_status_not_found",
"tests/cli/test_exchange.py::TestExchangePaymentStatusCommand::test_payment_status_pending",
"tests/cli/test_exchange.py::TestExchangeRatesCommand::test_rates_api_error",
"tests/cli/test_exchange.py::TestExchangeRatesCommand::test_rates_success",
"tests/cli/test_exchange.py::TestExchangeWalletCommands::test_wallet_balance_success",
"tests/cli/test_exchange.py::TestExchangeWalletCommands::test_wallet_info_success",
"tests/cli/test_governance.py::TestGovernanceCommands::test_list_filter_by_status",
"tests/cli/test_governance.py::TestGovernanceCommands::test_list_proposals",
"tests/cli/test_governance.py::TestGovernanceCommands::test_propose_funding",
"tests/cli/test_governance.py::TestGovernanceCommands::test_propose_general",
"tests/cli/test_governance.py::TestGovernanceCommands::test_propose_parameter_change",
"tests/cli/test_governance.py::TestGovernanceCommands::test_result_command",
"tests/cli/test_governance.py::TestGovernanceCommands::test_result_invalid_proposal",
"tests/cli/test_governance.py::TestGovernanceCommands::test_vote_against",
"tests/cli/test_governance.py::TestGovernanceCommands::test_vote_duplicate_rejected",
"tests/cli/test_governance.py::TestGovernanceCommands::test_vote_for",
"tests/cli/test_governance.py::TestGovernanceCommands::test_vote_invalid_proposal",
"tests/cli/test_governance.py::TestGovernanceCommands::test_vote_weighted",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_add_review",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_api_error_handling",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_gpu_book",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_gpu_details",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_gpu_list_all",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_gpu_list_available",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_gpu_list_with_filters",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_gpu_release",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_orders_list",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_pricing_info",
"tests/cli/test_marketplace.py::TestMarketplaceCommands::test_reviews_list",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_details",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_details_not_found",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_list_all",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_list_with_filters",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_submit_api_error",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_submit_price_validation_error",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_submit_success",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidCommands::test_bid_submit_validation_error",
"tests/cli/test_marketplace_bids.py::TestMarketplaceBidIntegration::test_complete_bid_workflow",
"tests/cli/test_marketplace_bids.py::TestMarketplaceOffersCommands::test_offers_list_all",
"tests/cli/test_marketplace_bids.py::TestMarketplaceOffersCommands::test_offers_list_with_filters",
"tests/cli/test_simulate.py::TestSimulateCommands::test_api_error_handling",
"tests/cli/test_simulate.py::TestSimulateCommands::test_create_user",
"tests/cli/test_simulate.py::TestSimulateCommands::test_fund_user",
"tests/cli/test_simulate.py::TestSimulateCommands::test_init_economy",
"tests/cli/test_simulate.py::TestSimulateCommands::test_init_with_reset",
"tests/cli/test_simulate.py::TestSimulateCommands::test_invalid_distribution_format",
"tests/cli/test_simulate.py::TestSimulateCommands::test_list_users",
"tests/cli/test_simulate.py::TestSimulateCommands::test_load_test",
"tests/cli/test_simulate.py::TestSimulateCommands::test_load_test_command",
"tests/cli/test_simulate.py::TestSimulateCommands::test_nonexistent_commands",
"tests/cli/test_simulate.py::TestSimulateCommands::test_reset",
"tests/cli/test_simulate.py::TestSimulateCommands::test_reset_command",
"tests/cli/test_simulate.py::TestSimulateCommands::test_results",
"tests/cli/test_simulate.py::TestSimulateCommands::test_results_command",
"tests/cli/test_simulate.py::TestSimulateCommands::test_run_scenario",
"tests/cli/test_simulate.py::TestSimulateCommands::test_run_workflow",
"tests/cli/test_simulate.py::TestSimulateCommands::test_scenario_commands",
"tests/cli/test_simulate.py::TestSimulateCommands::test_scenario_list",
"tests/cli/test_simulate.py::TestSimulateCommands::test_user_balance",
"tests/cli/test_simulate.py::TestSimulateCommands::test_workflow_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_address_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_balance_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_balance_new_wallet",
"tests/cli/test_wallet.py::TestWalletCommands::test_earn_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_history_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_liquidity_stake_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_liquidity_stake_gold_tier",
"tests/cli/test_wallet.py::TestWalletCommands::test_liquidity_stake_insufficient_balance",
"tests/cli/test_wallet.py::TestWalletCommands::test_liquidity_unstake_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_liquidity_unstake_invalid_id",
"tests/cli/test_wallet.py::TestWalletCommands::test_request_payment_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_rewards_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_send_command_success",
"tests/cli/test_wallet.py::TestWalletCommands::test_send_insufficient_balance",
"tests/cli/test_wallet.py::TestWalletCommands::test_spend_command_success",
"tests/cli/test_wallet.py::TestWalletCommands::test_spend_insufficient_balance",
"tests/cli/test_wallet.py::TestWalletCommands::test_stake_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_stake_insufficient_balance",
"tests/cli/test_wallet.py::TestWalletCommands::test_staking_info_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_stats_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_unstake_command",
"tests/cli/test_wallet.py::TestWalletCommands::test_unstake_invalid_id",
"tests/cli/test_wallet.py::TestWalletCommands::test_wallet_file_creation",
"tests/e2e/test_advanced_features.py::test_adaptive_scaler_trigger",
"tests/e2e/test_advanced_features.py::test_dao_governance_proposal",
"tests/e2e/test_advanced_features.py::test_multi_modal_fusion",
"tests/e2e/test_client_miner_workflow.py::test_client_to_miner_complete_workflow",
"tests/e2e/test_client_miner_workflow.py::test_enhanced_services_integration",
"tests/e2e/test_cross_container_marketplace.py::test_cross_container_marketplace_sync",
"tests/e2e/test_fixture_verification.py::test_fixture_config_files",
"tests/e2e/test_fixture_verification.py::test_fixture_helper_functions",
"tests/e2e/test_fixture_verification.py::test_fixture_import",
"tests/e2e/test_fixture_verification.py::test_fixture_paths_exist",
"tests/e2e/test_fixture_verification.py::test_fixture_structure",
"tests/e2e/test_fixture_verification.py::test_fixture_wallet_files",
"tests/e2e/test_mock_services.py::test_mock_integration",
"tests/e2e/test_mock_services.py::test_mock_performance",
"tests/e2e/test_mock_services.py::test_mock_workflow",
"tests/integration/test_basic_integration.py::test_coordinator_client_fixture",
"tests/integration/test_basic_integration.py::test_mock_coordinator_client",
"tests/integration/test_basic_integration.py::test_pytest_markings",
"tests/integration/test_basic_integration.py::test_pytest_markings_integration",
"tests/integration/test_basic_integration.py::test_simple_job_creation_mock",
"tests/integration/test_blockchain_final.py::test_nodes",
"tests/integration/test_blockchain_nodes.py::test_block_production",
"tests/integration/test_blockchain_nodes.py::test_chain_consistency",
"tests/integration/test_blockchain_nodes.py::test_faucet_and_balances",
"tests/integration/test_blockchain_nodes.py::test_node_connectivity",
"tests/integration/test_blockchain_nodes.py::test_transaction_submission",
"tests/integration/test_blockchain_simple.py::test_node_basic_functionality",
"tests/integration/test_blockchain_sync_simple.py::TestBlockchainSyncSimple::test_cross_site_sync_status",
"tests/integration/test_blockchain_sync_simple.py::TestBlockchainSyncSimple::test_real_node_connectivity",
"tests/integration/test_blockchain_sync_simple.py::TestBlockchainSyncSimple::test_sync_health_check",
"tests/integration/test_blockchain_sync_simple.py::TestBlockchainSyncSimple::test_sync_monitoring_metrics",
"tests/integration/test_community_governance.py::test_developer_ecosystem",
"tests/integration/test_community_governance.py::test_governance_lifecycle",
"tests/integration/test_community_governance.py::test_solution_marketplace",
"tests/integration/test_full_workflow.py::TestJobToBlockchainWorkflow::test_end_to_end_job_execution",
"tests/integration/test_full_workflow.py::TestJobToBlockchainWorkflow::test_multi_tenant_isolation",
"tests/integration/test_full_workflow.py::TestMarketplaceIntegration::test_service_listing_and_booking",
"tests/integration/test_full_workflow.py::TestP2PNetworkSync::test_block_propagation",
"tests/integration/test_full_workflow.py::TestP2PNetworkSync::test_transaction_propagation",
"tests/integration/test_full_workflow.py::TestSecurityIntegration::test_end_to_end_encryption",
"tests/integration/test_full_workflow.py::TestWalletToCoordinatorIntegration::test_job_payment_flow",
"tests/integration/test_integration_simple.py::test_api_key_validation",
"tests/integration/test_integration_simple.py::test_coordinator_docs",
"tests/integration/test_integration_simple.py::test_coordinator_health_check",
"tests/integration/test_integration_simple.py::test_job_creation_with_mock",
"tests/integration/test_integration_simple.py::test_miner_registration",
"tests/integration/test_integration_simple.py::test_mock_services",
"tests/integration/test_working_integration.py::test_api_key_validation",
"tests/integration/test_working_integration.py::test_coordinator_app_imports",
"tests/integration/test_working_integration.py::test_coordinator_health_check",
"tests/integration/test_working_integration.py::test_import_structure",
"tests/integration/test_working_integration.py::test_job_endpoint_structure",
"tests/integration/test_working_integration.py::test_job_schema_validation",
"tests/integration/test_working_integration.py::test_miner_endpoint_structure",
"tests/openclaw_marketplace/test_framework.py::TestMarketplaceHealth::test_primary_marketplace_health",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionCompliance::test_audit_trail_privacy",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionCompliance::test_data_retention_policy",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionCompliance::test_kyc_aml_integration",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionCompliance::test_regulatory_reporting",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_audit_log_integrity",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_deniable_encryption",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_encryption_confidentiality",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_forward_secrecy",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_hsm_integration_security",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_key_rotation_security",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_multi_party_computation",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_side_channel_resistance",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_transaction_replay_protection",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_viewing_key_generation",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_viewing_key_permissions",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionSecurity::test_zero_knowledge_proof_integration",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionVulnerabilities::test_key_derivation_security",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionVulnerabilities::test_memory_sanitization",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionVulnerabilities::test_quantum_resistance_preparation",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionVulnerabilities::test_side_channel_leakage_prevention",
"tests/security/test_confidential_transactions.py::TestConfidentialTransactionVulnerabilities::test_timing_attack_prevention",
"tests/test_basic_integration.py::test_coordinator_client_fixture",
"tests/test_basic_integration.py::test_mock_coordinator_client",
"tests/test_basic_integration.py::test_pytest_markings",
"tests/test_basic_integration.py::test_pytest_markings_integration",
"tests/test_basic_integration.py::test_simple_job_creation_mock",
"tests/test_blockchain_final.py::test_nodes",
"tests/test_blockchain_nodes.py::test_block_production",
"tests/test_blockchain_nodes.py::test_chain_consistency",
"tests/test_blockchain_nodes.py::test_faucet_and_balances",
"tests/test_blockchain_nodes.py::test_node_connectivity",
"tests/test_blockchain_nodes.py::test_transaction_submission",
"tests/test_blockchain_simple.py::test_node_basic_functionality",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_command_security_level_classification",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_critical_command_translation_disabled",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_external_api_failure_fallback",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_get_security_policy_for_command",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_high_security_local_only",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_local_translation_functionality",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_low_security_full_translation",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_medium_security_fallback_mode",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_security_logging",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_security_summary_generation",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_translation_allowed_check",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_unknown_command_default_security",
"tests/test_cli_translation_security.py::TestCLITranslationSecurityManager::test_user_consent_requirement",
"tests/test_cli_translation_security.py::TestSecurityCompliance::test_always_fallback_to_original_text",
"tests/test_cli_translation_security.py::TestSecurityCompliance::test_critical_commands_never_use_external_apis",
"tests/test_cli_translation_security.py::TestSecurityCompliance::test_sensitive_data_never_sent_externally",
"tests/test_cli_translation_security.py::TestSecurityEdgeCases::test_concurrent_translation_requests",
"tests/test_cli_translation_security.py::TestSecurityEdgeCases::test_empty_translation_request",
"tests/test_cli_translation_security.py::TestSecurityEdgeCases::test_security_log_size_limit",
"tests/test_cli_translation_security.py::TestSecurityEdgeCases::test_unsupported_target_language",
"tests/test_cli_translation_security.py::TestSecurityEdgeCases::test_very_long_text_translation",
"tests/test_cli_translation_security.py::TestTranslationSecurityConfiguration::test_configure_translation_security",
"tests/test_cli_translation_security.py::TestTranslationSecurityConfiguration::test_get_translation_security_report",
"tests/test_discovery.py::test_another_discovery_test",
"tests/test_discovery.py::test_pytest_discovery",
"tests/test_explorer_fixes.py::TestExplorerFixes::test_explorer_contains_robust_timestamp_handling",
"tests/test_explorer_fixes.py::TestExplorerFixes::test_explorer_file_contains_transaction_endpoint",
"tests/test_explorer_fixes.py::TestExplorerFixes::test_explorer_search_functionality",
"tests/test_explorer_fixes.py::TestExplorerFixes::test_field_mapping_completeness",
"tests/test_explorer_fixes.py::TestExplorerFixes::test_pytest_configuration_restored",
"tests/test_explorer_fixes.py::TestRPCIntegration::test_field_mapping_consistency",
"tests/test_explorer_fixes.py::TestRPCIntegration::test_rpc_transaction_endpoint_exists",
"tests/test_explorer_integration.py::TestExplorerTransactionAPI::test_transaction_endpoint_exists",
"tests/test_explorer_integration.py::TestExplorerTransactionAPI::test_transaction_not_found",
"tests/test_explorer_integration.py::TestExplorerTransactionAPI::test_transaction_successful_response",
"tests/test_explorer_integration.py::TestFieldMapping::test_rpc_to_frontend_mapping",
"tests/test_explorer_integration.py::TestTestDiscovery::test_pytest_configuration",
"tests/test_explorer_integration.py::TestTestDiscovery::test_test_files_exist",
"tests/test_explorer_integration.py::TestTimestampHandling::test_format_timestamp_invalid",
"tests/test_explorer_integration.py::TestTimestampHandling::test_format_timestamp_iso_string",
"tests/test_explorer_integration.py::TestTimestampHandling::test_format_timestamp_numeric",
"tests/test_integration_simple.py::test_api_key_validation",
"tests/test_integration_simple.py::test_coordinator_docs",
"tests/test_integration_simple.py::test_coordinator_health_check",
"tests/test_integration_simple.py::test_job_creation_with_mock",
"tests/test_integration_simple.py::test_miner_registration",
"tests/test_integration_simple.py::test_mock_services",
"tests/test_websocket_backpressure_core.py::TestBackpressureScenarios::test_high_load_scenario",
"tests/test_websocket_backpressure_core.py::TestBackpressureScenarios::test_slow_consumer_isolation",
"tests/test_websocket_backpressure_core.py::TestBoundedQueue::test_backpressure_handling",
"tests/test_websocket_backpressure_core.py::TestBoundedQueue::test_basic_operations",
"tests/test_websocket_backpressure_core.py::TestBoundedQueue::test_priority_ordering",
"tests/test_websocket_backpressure_core.py::TestStreamManager::test_broadcast_to_all_streams",
"tests/test_websocket_backpressure_core.py::TestStreamManager::test_slow_stream_detection",
"tests/test_websocket_backpressure_core.py::TestWebSocketStream::test_backpressure_handling",
"tests/test_websocket_backpressure_core.py::TestWebSocketStream::test_slow_consumer_detection",
"tests/test_windsurf_integration.py::test_multiplication[1-2]",
"tests/test_windsurf_integration.py::test_multiplication[2-4]",
"tests/test_windsurf_integration.py::test_multiplication[3-6]",
"tests/test_windsurf_integration.py::test_pytest_discovery",
"tests/test_windsurf_integration.py::test_windsurf_integration",
"tests/test_working_integration.py::test_api_key_validation",
"tests/test_working_integration.py::test_coordinator_app_imports",
"tests/test_working_integration.py::test_coordinator_health_check",
"tests/test_working_integration.py::test_import_structure",
"tests/test_working_integration.py::test_job_endpoint_structure",
"tests/test_working_integration.py::test_job_schema_validation",
"tests/test_working_integration.py::test_miner_endpoint_structure",
"tests/verification/test_block_import.py::test_block_import",
"tests/verification/test_block_import_complete.py::test_block_import_complete",
"tests/verification/test_minimal.py::test_minimal",
"tests/verification/test_simple_import.py::test_simple_block_import",
"tests/verification/test_tx_import.py::test_transaction_import"
]