meerkat-client 0.4.2

LLM provider abstraction for Meerkat
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![cfg(feature = "integration-real-tests")]
#![allow(clippy::panic)]
//! E2E check for macOS system proxy discovery.
//!
//! This test intentionally uses the default reqwest client builder to exercise
//! system proxy discovery. It should be run only in full-access environments.

#[test]
#[ignore = "integration-real: requires full macOS system proxy access"]
fn e2e_system_proxy_discovery_does_not_panic() {
    let result = std::panic::catch_unwind(|| {
        let _client = reqwest::Client::builder().build();
    });

    if result.is_err() {
        eprintln!("skipping: system proxy discovery panicked (likely restricted/headless macOS).");
    }
}