Files
Shadowbroker/backend/tests/mesh/run_private_adversarial_regression.ps1
2026-05-01 22:56:50 -06:00

22 lines
742 B
PowerShell

$ErrorActionPreference = "Stop"
$backendRoot = Split-Path -Parent (Split-Path -Parent $PSScriptRoot)
Push-Location $backendRoot
try {
$env:PYTHONPATH = "."
python -m pytest -q `
tests/mesh/test_private_adversarial_regression.py `
tests/mesh/test_privacy_claims.py `
tests/mesh/test_signed_write_decorator.py `
tests/mesh/test_phase6_protocol_context.py `
tests/mesh/test_signed_write_transport_matrix.py `
tests/mesh/test_private_dispatcher.py `
tests/mesh/test_private_release_outbox.py `
tests/mesh/test_mesh_relay_policy.py `
tests/mesh/test_gate_legacy_migration.py `
tests/mesh/test_gate_rns_envelope_distribution.py
}
finally {
Pop-Location
}