Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ commands:
- run:
name: Install dependencies
command: |
./opt/readies/bin/getredis -v 6.0 --valgrind --force
./opt/readies/bin/getredis -v 6.2 --valgrind --force
./get_deps.sh cpu
- run:
name: Build for valgrind
Expand Down Expand Up @@ -346,7 +346,7 @@ jobs:
type: string
default: "CLUSTER=0"
docker:
- image: redisfab/rmbuilder:6.0.9-x64-buster
- image: redisfab/rmbuilder:6.2.5-x64-bullseye
steps:
- abort_for_docs
- abort_for_noci
Expand All @@ -359,7 +359,7 @@ jobs:
- run:
name: Install dependencies
command: |
./opt/readies/bin/getredis -v 6.0 --valgrind --force
./opt/readies/bin/getredis -v 6.2 --valgrind --force
./get_deps.sh cpu
- run:
name: Build for valgrind
Expand Down
2 changes: 1 addition & 1 deletion tests/flow/tests_dag.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def wrapper(env, *args, **kwargs):
p = int(p)
if (M < major) or (M == major and m < minor) or (M == major and m == minor and p < patch):
env.debugPrint("skipping {0} since this test is for version {1}.{2}.{3} and above".format(
sys._getframe().f_code.co_name, major, minor, patch), force=True)
f.__name__, major, minor, patch), force=True)
return
return f(env, *args, **kwargs)
return wrapper
Expand Down