From 186c01c7f294842ed4393ac6a241f9c57e489a09 Mon Sep 17 00:00:00 2001 From: Marc Pichler Date: Thu, 17 Oct 2024 09:55:04 +0200 Subject: [PATCH] test: use venv in w3c trace context test script (#5071) --- integration-tests/tracecontext-integration-test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-tests/tracecontext-integration-test.sh b/integration-tests/tracecontext-integration-test.sh index 6096b9198f3..cf3d94c056a 100755 --- a/integration-tests/tracecontext-integration-test.sh +++ b/integration-tests/tracecontext-integration-test.sh @@ -8,6 +8,8 @@ mkdir -p target rm -rf ./target/trace-context git clone https://github.com/w3c/trace-context ./target/trace-context cd ./target/trace-context && git checkout $TRACECONTEXT_GIT_TAG && cd - +python3 -m venv ./.venv +source ./.venv/bin/activate pip3 install setuptools; pip3 install aiohttp; node ./integration-tests/propagation-validation-server/validation-server.js 1>&2 &