From 4573e6d18ba357be932f6ee050a7e5f2970795b7 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sat, 19 Sep 2020 00:07:56 +0300 Subject: [PATCH] ci: set huponexit for inner bash processes Followup for aae816369637021888eaf0fa22254e5f364eea7d --- ci_scripts/run-python-test.sh | 1 + ci_scripts/run-rust-test.sh | 1 + 2 files changed, 2 insertions(+) diff --git a/ci_scripts/run-python-test.sh b/ci_scripts/run-python-test.sh index 26b8e38da..d677b9e9a 100755 --- a/ci_scripts/run-python-test.sh +++ b/ci_scripts/run-python-test.sh @@ -4,6 +4,7 @@ # and tox/pytest. set -e -x +shopt -s huponexit # for core-building and python install step export DCC_RS_TARGET=debug diff --git a/ci_scripts/run-rust-test.sh b/ci_scripts/run-rust-test.sh index bbfe17ff1..185289d5c 100755 --- a/ci_scripts/run-rust-test.sh +++ b/ci_scripts/run-rust-test.sh @@ -1,6 +1,7 @@ #!/usr/bin/env bash set -ex +shopt -s huponexit #export RUST_TEST_THREADS=1 export RUST_BACKTRACE=1