From 0b6fb8a4f8d4b9f373dab1523916e3183fccfb9a Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Fri, 2 Sep 2022 02:24:39 -0400 Subject: [PATCH] Added lsof to cargo test docker step --- .woodpecker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index 6ae02a7..b085c6c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -2,6 +2,8 @@ pipeline: tests: image: rust:1.63 commands: + - "apt update" + - "apt install -y lsof" - "cargo test" build_release: