From 89ade8f33d0db15d744df320c289ad024bc5b198 Mon Sep 17 00:00:00 2001 From: Julio Montes Date: Mon, 21 Sep 2020 15:48:02 -0500 Subject: [PATCH] travis: enable RUST_BACKTRACE RUST_BACKTRACE=1 will help us a lot to debug unit tests when a test is failing Signed-off-by: Julio Montes --- .travis.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 2bac58b583..672c209d64 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,9 @@ dist: bionic os: linux language: go go: 1.14.4 -env: target_branch=$TRAVIS_BRANCH +env: + - target_branch=$TRAVIS_BRANCH + - RUST_BACKTRACE=1 before_install: - git remote set-branches --add origin "${TRAVIS_BRANCH}"