File tree Expand file tree Collapse file tree 1 file changed +6
-10
lines changed
.github/actions/run-tests Expand file tree Collapse file tree 1 file changed +6
-10
lines changed Original file line number Diff line number Diff line change @@ -35,13 +35,16 @@ runs:
35
35
CLIENT_LIBS_TEST_IMAGE : " redislabs/client-libs-test:${{ inputs.redis-version }}"
36
36
run : |
37
37
set -e
38
-
38
+
39
39
echo "::group::Installing dependencies"
40
40
pip install -U setuptools wheel
41
41
pip install -r requirements.txt
42
42
pip install -r dev_requirements.txt
43
43
if [ "${{inputs.parser-backend}}" == "hiredis" ]; then
44
- pip install hiredis${{inputs.hiredis-version}}
44
+ pip install hiredis${{inputs.hiredis-version}}
45
+ echo "PARSER_BACKEND=${{inputs.parser-backend}}_${"${{inputs.hiredis-version}}"//[^a-zA-Z0-9]/_}" >> $GITHUB_ENV
46
+ else
47
+ echo "PARSER_BACKEND=${{inputs.parser-backend}}" >> $GITHUB_ENV
45
48
fi
46
49
echo "::endgroup::"
47
50
@@ -113,17 +116,10 @@ runs:
113
116
redis-cli -p 16379 CLUSTER NODES
114
117
shell : bash
115
118
116
- - name : Setup upterm session
117
- if : failure()
118
- uses : lhotari/action-upterm@v1
119
- with :
120
- limit-access-to-actor : true
121
- limit-access-to-users : uglide
122
-
123
119
- name : Upload test results and profiling data
124
120
uses : actions/upload-artifact@v4
125
121
with :
126
- name : pytest-results-${{inputs.redis-version}}-${{inputs.parser-backend }}-${{inputs.python-version }}-${{inputs.event-loop}}
122
+ name : pytest-results-redis_ ${{inputs.redis-version}}-python_ ${{inputs.python-version }}-parser_ ${{env.PARSER_BACKEND }}-el_ ${{inputs.event-loop}}
127
123
path : |
128
124
*-results.xml
129
125
prof/**
You can’t perform that action at this time.
0 commit comments