Skip to content

Commit e79e5fb

Browse files
committed
Investigate server failures during 8.4 tests
1 parent d1cea54 commit e79e5fb

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

.github/workflows/install_and_test.sh

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -e
3+
# set -e
44

55
SUFFIX=$1
66
if [ -z ${SUFFIX} ]; then
@@ -22,6 +22,9 @@ source ${DESTENV}/bin/activate
2222
pip install --upgrade --quiet pip
2323
pip install --quiet -r dev_requirements.txt
2424
pip uninstall -y redis # uninstall Redis package installed via redis-entraid
25+
26+
root_dir=`pwd`
27+
echo "Root dir: ${root_dir}"
2528
invoke devenv --endpoints=all-stack
2629
invoke package
2730

@@ -41,6 +44,13 @@ cd ${TESTDIR}
4144
pip install ${PKG}
4245
# Redis tests
4346
pytest -m 'not onlycluster' --ignore=tests/test_scenario --ignore=tests/test_asyncio/test_scenario
47+
48+
success = $?
49+
if [ ${success} -ne 0 ]; then
50+
echo "Redis tests failed"
51+
cat ${root_dir}/dockers/standalone/node-0/redis.log
52+
exit ${success}
53+
fi
4454
# RedisCluster tests
4555
CLUSTER_URL="redis://localhost:16379/0"
4656
CLUSTER_SSL_URL="rediss://localhost:27379/0"

.github/workflows/integration.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,8 @@ jobs:
7676
max-parallel: 15
7777
fail-fast: false
7878
matrix:
79-
redis-version: ['8.4-RC1-pre.2', '${{ needs.redis_version.outputs.CURRENT }}', '8.0.2' ,'7.4.4', '7.2.9']
79+
#redis-version: ['8.4-RC1-pre', '${{ needs.redis_version.outputs.CURRENT }}', '8.0.2' ,'7.4.4', '7.2.9']
80+
redis-version: ['8.4-RC1-pre', '8.4-RC1-pre.2']
8081
python-version: ['3.10', '3.14']
8182
parser-backend: ['plain']
8283
event-loop: ['asyncio']

0 commit comments

Comments
 (0)