test descriptions

This commit is contained in:
Dobromir Popov
2026-07-11 22:25:30 +03:00
parent 7d259d7c9b
commit 7cf8d9bcf3
43 changed files with 876 additions and 265 deletions

View File

@@ -55,7 +55,8 @@ def _send_completion(gateway_url: str, prompt: str) -> str:
def test_bad_node_is_slashed_and_excluded_from_gateway_routes(capsys):
"""A bad final shard is slashed by the validator and then excluded by routing."""
"A bad final shard is slashed by the validator and then excluded by routing.\n\nTags: billing, routing, security"
contracts = LocalSolanaContracts()
contracts.registry.submit_stake("wallet-good", 500)
contracts.registry.submit_stake("wallet-bad", 500)
@@ -117,7 +118,8 @@ def test_bad_node_is_slashed_and_excluded_from_gateway_routes(capsys):
def test_validator_sampling_rate_is_configurable():
"""The validator only reruns requests selected by its configured sample rate."""
"The validator only reruns requests selected by its configured sample rate.\n\nTags: billing, security"
contracts = LocalSolanaContracts()
class InProcessReferenceValidator(ValidatorProcess):