Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,11 @@ jobs:
- name: Run unit tests
run: cargo test --lib --bins --verbose

- name: Run protocol tests
run: cargo test --test protocol_test --verbose
- name: Run integration tests
run: cargo test --test integration_test -- --test-threads=1

- name: Run config tests
run: cargo test --test config_test --verbose

# Integration tests require Docker setup - skip in CI for now
# You can enable these once you have a working mock backend setup
# - name: Run integration tests
# run: cargo test --test integration_test --verbose
- name: Run resilience tests
run: cargo test --test resilience_test -- --test-threads=1

build-and-publish:
name: Build and Publish Docker Image
Expand Down
2 changes: 2 additions & 0 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
Auto-generated from all feature plans. Last updated: 2025-10-28

## Active Technologies
- Rust 1.75+ (edition 2024) + estcontainers 0.27 (new), tokio 1.x, tonic 0.14, existing mock-grpc-backend Docker image (002-testcontainers-integration)

- Rust 1.75+ + okio (async runtime), tonic (gRPC client for backend checks), prometheus (metrics), serde (config/logging) (001-core-agent)

Expand All @@ -22,6 +23,7 @@ cargo test [ONLY COMMANDS FOR ACTIVE TECHNOLOGIES][ONLY COMMANDS FOR ACTIVE TECH
Rust 1.75+: Follow standard conventions

## Recent Changes
- 002-testcontainers-integration: Added Rust 1.75+ (edition 2024) + estcontainers 0.27 (new), tokio 1.x, tonic 0.14, existing mock-grpc-backend Docker image

- 001-core-agent: Added Rust 1.75+ + okio (async runtime), tonic (gRPC client for backend checks), prometheus (metrics), serde (config/logging)

Expand Down
Loading