PragmaTwice commented on code in PR #2175:
URL: https://github.com/apache/kvrocks/pull/2175#discussion_r1536751349
##########
.github/workflows/kvrocks.yaml:
##########
@@ -293,6 +301,30 @@ jobs:
fi
./x.py test go build $GOCASE_RUN_ARGS ${{ matrix.ignore_when_tsan}}
+ - name: Install redis-py
+ run: pip3 install redis==4.3.6
+
+ - name: Run kvrocks2redis Test
+ # Currently, when enabling Tsan/Asan or running in macOS 11/14, the
value mismatch in destination redis server.
+ # See https://github.com/apache/kvrocks/issues/2195.
+ if: ${{ !contains(matrix.name, 'Tsan') && !contains(matrix.name,
'Asan') && !startsWith(matrix.os, 'macos') }}
+ run: |
+ ulimit -c unlimited
+ export LSAN_OPTIONS="suppressions=$(realpath
./tests/lsan-suppressions)"
+ export TSAN_OPTIONS="suppressions=$(realpath
./tests/tsan-suppressions)"
+ $HOME/local/bin/redis-server --daemonize yes
+ mkdir -p data
Review Comment:
Could you switch to another dir or name it more distinguishable?
--
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]