Files
arbitrade/.gitignore
T
zwitschi cc11082ea7
CI / lint-test-build (push) Failing after 19s
feat: Implement latency profiling and guardrails for performance monitoring
- Added synthetic latency profiler scenarios and CLI scripts for baseline generation and regression checks.
- Introduced latency baseline and threshold artifacts for CI enforcement.
- Enhanced CI workflow with latency guardrail checks.
- Updated documentation to include latency profiling commands and performance metrics.
- Added unit tests for latency guardrail evaluation.
2026-06-01 14:47:52 +02:00

43 lines
486 B
Plaintext

# Instructions
.github/instructions/
# Python
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg-info/
.eggs/
.pytest_cache/
.mypy_cache/
.ruff_cache/
.coverage
htmlcov/
# Virtual environments
.venv/
venv/
# IDE / OS
.vscode/
.idea/
.DS_Store
Thumbs.db
# Env / secrets
.env
.env.*
!.env.example
secrets/
# Local database / runtime data
data/*.duckdb
data/*.duckdb.wal
data/*.duckdb.tmp
logs/
ops/performance/latest_profile.json
# Node assets if used for frontend tooling
node_modules/