From bf76a5d8a59cdd9e8790a6ce8bbd8f538bb175f5 Mon Sep 17 00:00:00 2001 From: flea Date: Mon, 25 Mar 2024 16:04:34 +0800 Subject: [PATCH] fix: add all-features flag for unit tests --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5ee1b60..224e4d8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -52,10 +52,10 @@ jobs: uses: actions-rs/cargo@v1 with: command: test - args: --workspace --exclude sentinel-envoy-module --exclude ebpf-probes --exclude ebpf-userspace -- --nocapture + args: --all-features --workspace --exclude sentinel-envoy-module --exclude ebpf-probes --exclude ebpf-userspace -- --nocapture - name: Ignored Unit Tests uses: actions-rs/cargo@v1 with: command: test - args: --workspace --exclude sentinel-envoy-module --exclude ebpf-probes --exclude ebpf-userspace -- --ignored --test-threads=1 --nocapture + args: --all-features --workspace --exclude sentinel-envoy-module --exclude ebpf-probes --exclude ebpf-userspace -- --ignored --test-threads=1 --nocapture