barycenter/.config/nextest.toml
Till Wegmueller 64b31e40df
Initial commit: Barycenter OpenID Connect Identity Provider
Barycenter is an OpenID Connect Identity Provider (IdP) implementing
OAuth 2.0 Authorization Code flow with PKCE. Written in Rust using
axum, SeaORM, and josekit.

Features:
- Authorization Code flow with PKCE (S256)
- Dynamic client registration
- Token endpoint with multiple auth methods
- ID Token signing (RS256)
- UserInfo endpoint
- Discovery and JWKS publication

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-29 12:17:01 +01:00

16 lines
493 B
TOML

[profile.default]
# Run tests serially to avoid port conflicts
test-threads = 1
# Increase timeout for integration tests that start the server
slow-timeout = { period = "180s", terminate-after = 3 }
# Show output for all tests
status-level = "all"
# Always show stdout/stderr for integration tests
failure-output = "immediate-final"
success-output = "final"
[profile.ci]
# CI profile with stricter settings
test-threads = 1
retries = 2
slow-timeout = { period = "120s", terminate-after = 3 }