mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 06:36:37 +00:00
- Run cargo fmt across all crates (468 files formatted) - Add permissions for PR comments in benchmarks.yml - Add continue-on-error for PR comment steps - Remove Docker service from postgres-extension-ci (pgrx manages own postgres) - Add permissions to postgres-extension-ci.yml 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
16 lines
552 B
Rust
16 lines
552 B
Rust
// Common test utilities
|
|
//
|
|
// Provides shared functionality for integration tests
|
|
|
|
pub mod images;
|
|
pub mod latex;
|
|
pub mod metrics;
|
|
pub mod server;
|
|
pub mod types;
|
|
|
|
// Re-export commonly used types and functions
|
|
pub use images::{generate_fraction, generate_integral, generate_simple_equation, generate_symbol};
|
|
pub use latex::{calculate_similarity, expressions_match, normalize};
|
|
pub use metrics::{calculate_bleu, calculate_cer, calculate_wer};
|
|
pub use server::TestServer;
|
|
pub use types::{CacheStats, OutputFormat, ProcessingOptions, ProcessingResult};
|