Files
zwitschi 529ff967cc
CI / lint-test-build (push) Failing after 1m23s
Add integration tests for execution persistence, metrics, and opportunity writing
- Implemented integration tests for the execution writer to ensure trade orders and PnL are persisted correctly.
- Created integration tests for the metrics calculator to summarize execution data accurately.
- Added integration tests for the opportunity writer to verify event persistence.
- Established PostgreSQL schema validation tests to ensure all expected tables, columns, and constraints exist.
- Removed outdated unit tests that relied on DuckDB and replaced them with tests using PgStore.
2026-06-07 14:37:53 +02:00

47 lines
532 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 build artifacts
build/
dist/
# Local database / runtime data
data/*.duckdb.wal
data/*.duckdb.tmp
data/arbitrade.duckdb
logs/
ops/performance/latest_profile.json
# Node assets if used for frontend tooling
node_modules/