From e8340ed671370e4e6e7e6527f5fc41f75dae5bce Mon Sep 17 00:00:00 2001 From: "Panagiotis \"Ivory\" Vasilopoulos" Date: Wed, 3 Jul 2024 16:33:36 +0200 Subject: [PATCH] CI: Enable RUST_BACKTRACE for tests Could be useful in some cases when GitHub Actions fails on a specific target. --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 64398672..0e6560e2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,8 @@ jobs: cargo test --lib cargo test --bins --examples cargo test --doc + env: + RUST_BACKTRACE: 1 integration-tests: name: Integration Tests