From 6e4843bb04a6a582f0d450fff3ccf42251e7e718 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 3 May 2023 17:52:57 +0100 Subject: [PATCH] bin/ci/ci_run_n_monitor: use venv wrapper Signed-off-by: Eric Engestrom Part-of: --- bin/ci/ci_run_n_monitor.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 bin/ci/ci_run_n_monitor.sh diff --git a/bin/ci/ci_run_n_monitor.sh b/bin/ci/ci_run_n_monitor.sh new file mode 100755 index 0000000..ba6a7e3 --- /dev/null +++ b/bin/ci/ci_run_n_monitor.sh @@ -0,0 +1,10 @@ +#!/usr/bin/env bash +set -eu + +this_dir=$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")") +readonly this_dir + +exec \ + "$this_dir/../python-venv.sh" \ + "$this_dir/requirements.txt" \ + "$this_dir/ci_run_n_monitor.py" "$@" -- 2.7.4