- Implemented PolicyPackSelectorComponent for selecting policy packs. - Added unit tests for component behavior, including API success and error handling. - Introduced monaco-workers type declarations for editor workers. - Created acceptance tests for guardrails with stubs for AT1–AT10. - Established SCA Failure Catalogue Fixtures for regression testing. - Developed plugin determinism harness with stubs for PL1–PL10. - Added scripts for evidence upload and verification processes.
8 lines
402 B
Bash
8 lines
402 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
root_dir=$(cd "$(dirname "$0")/.." && pwd)
|
|
verifier="$root_dir/packs/verify_offline_bundle.py"
|
|
python3 "$verifier" --bundle "$root_dir/packs/__fixtures__/good" --manifest bundle.json --require-dsse
|
|
python3 "$verifier" --bundle "$root_dir/packs/__fixtures__/bad" --manifest bundle-missing-quota.json --require-dsse && exit 1 || true
|
|
echo "fixture checks completed"
|