PragmaTwice commented on code in PR #2428:
URL: https://github.com/apache/kvrocks/pull/2428#discussion_r1684510824
##########
.github/workflows/kvrocks.yaml:
##########
@@ -308,9 +308,17 @@ jobs:
GOCASE_RUN_ARGS="-tlsEnable"
fi
./x.py test go build $GOCASE_RUN_ARGS ${{ matrix.ignore_when_tsan}}
-
+
+ - name: Set up Python Environment
+ run: |
+ python3 -m venv venv
+ source venv/bin/activate
+
+
- name: Install redis-py
- run: pip3 install redis==4.3.6
+ run: |
+ source venv/bin/activate
+ pip3 install redis==4.3.6
Review Comment:
Please don't change unrelated part : )
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]