summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorOran Agra <oran@redislabs.com>2023-03-23 10:49:09 +0200
committerGitHub <noreply@github.com>2023-03-23 10:49:09 +0200
commit9e15b42fda8fa622edf6a1e15cba0fc066a35407 (patch)
tree0acd3c00ea28d56401d490c389cf63f7bcdeeb0e /.github
parent99e6855453bc952acc58af4a688c1c32b4c987ee (diff)
downloadredis-9e15b42fda8fa622edf6a1e15cba0fc066a35407.tar.gz
ignore latency errors in the schema validation CI (#11958)
these latency threshold errors prevent the schema validation from running.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/daily.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml
index d792ae3ab..266834675 100644
--- a/.github/workflows/daily.yml
+++ b/.github/workflows/daily.yml
@@ -922,10 +922,10 @@ jobs:
run: sudo apt-get install tcl8.6 tclx
- name: test
if: true && !contains(github.event.inputs.skiptests, 'redis')
- run: ./runtest --log-req-res --dont-clean --force-resp3 --tags -slow --verbose --dump-logs ${{github.event.inputs.test_args}}
+ run: ./runtest --log-req-res --no-latency --dont-clean --force-resp3 --tags -slow --verbose --dump-logs ${{github.event.inputs.test_args}}
- name: module api test
if: true && !contains(github.event.inputs.skiptests, 'modules')
- run: ./runtest-moduleapi --log-req-res --dont-clean --force-resp3 --dont-pre-clean --verbose --dump-logs ${{github.event.inputs.test_args}}
+ run: ./runtest-moduleapi --log-req-res --no-latency --dont-clean --force-resp3 --dont-pre-clean --verbose --dump-logs ${{github.event.inputs.test_args}}
- name: sentinel tests
if: true && !contains(github.event.inputs.skiptests, 'sentinel')
run: ./runtest-sentinel --log-req-res --dont-clean --force-resp3 ${{github.event.inputs.cluster_test_args}}