scalo 2.10.7

Self-regulating runtime for hyperscale-grade data-plane services. Config, logging and metrics come pre-wired as singletons you just use -- then CLI, health probes, transport, backpressure, adaptive scaling and deployment contracts all build on that integration. Batteries included, idiomatic Rust. Sibling to the scalo package on PyPI (scalo-py).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Project:   scalo
// File:      tests/e2e_tests.rs
// Purpose:   Single-binary e2e test entry point (external infrastructure required)
// Language:  Rust
//
// License:   Apache-2.0
// Copyright: (c) 2026 HYPERI PTY LIMITED

//! End-to-end tests requiring external infrastructure.
//!
//! These tests are `#[ignore]` by default and require running services.
//! Run with: `cargo nextest run --test e2e -- --ignored`

mod common;

mod e2e;