From 21c97d155a7777de0e90d7420dd10746a1a6f9e8 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Sun, 4 Apr 2021 01:45:01 +0200 Subject: [PATCH] Show pip version used for installing httpbin in the logs --- build/tools/httpbin.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/tools/httpbin.sh b/build/tools/httpbin.sh index 834e7df0fb..8ea0587a7b 100644 --- a/build/tools/httpbin.sh +++ b/build/tools/httpbin.sh @@ -47,6 +47,8 @@ httpbin_launch() { ;; esac + echo "Installing using `python$PY3 -m pip --version`" + python$PY3 -m pip install $pip_decorator_arg httpbin --user $pip_options python$PY3 -m httpbin.core 2>&1 >httpbin.log & WX_TEST_WEBREQUEST_URL="http://localhost:5000"