From afa6814ab40b34f38b8814b624bc3a0f56196cfa Mon Sep 17 00:00:00 2001 From: Thomas Eizinger Date: Sat, 29 Mar 2025 12:49:43 +1100 Subject: [PATCH] chore(relay): ignore eBPF integration test (#8543) This needs elevated privileges to run. Our current pattern for these is to set them as ignored. In CI, we run all tests, including the ignored ones. --- rust/relay/server/tests/ebpf_ipv4.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/rust/relay/server/tests/ebpf_ipv4.rs b/rust/relay/server/tests/ebpf_ipv4.rs index f3ce2be2e..945797612 100644 --- a/rust/relay/server/tests/ebpf_ipv4.rs +++ b/rust/relay/server/tests/ebpf_ipv4.rs @@ -8,6 +8,7 @@ use ebpf_shared::Config; use stun_codec::rfc5766::attributes::ChannelNumber; #[tokio::test] +#[ignore = "Needs root"] async fn ping_pong() { let _guard = firezone_logging::test("trace,mio=off");