534bb94eea
Build Dev Image / build-dev-image (push) Waiting to run
Check i18n Keys / Check i18n Key Consistency (push) Waiting to run
Lint / Ruff Lint & Format (push) Waiting to run
Lint / Frontend Lint (push) Waiting to run
Test Migrations / Migrations (SQLite) (push) Waiting to run
Test Migrations / Migrations (PostgreSQL) (push) Waiting to run
16 lines
415 B
Bash
Executable File
16 lines
415 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Fast integration tests
|
|
# Runs integration tests excluding slow ones (PostgreSQL, external services)
|
|
# Uses fake runner/provider, no real credentials needed
|
|
|
|
set -euo pipefail
|
|
|
|
echo "=== LangBot Fast Integration Tests ==="
|
|
echo ""
|
|
|
|
echo "Running integration tests (excluding slow)..."
|
|
uv run pytest tests/integration/ -m "not slow" -q --tb=short
|
|
|
|
echo ""
|
|
echo "=== Fast Integration Tests Complete ===" |