Skip to content

Commit e7449a8

Browse files
author
Roman
committed
try short name - works with local runner
1 parent 1427d77 commit e7449a8

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/e2e-subtensor-tests.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464

6565
# Job to run tests in parallel
6666
run-e2e-test:
67-
name: ${{ matrix.test-file }} / Python ${{ matrix.python-version }}
67+
name: ${{ steps.set-name.outputs.short-name }} / Python ${{ matrix.python-version }}
6868
needs:
6969
- find-tests
7070
- pull-docker-image
@@ -79,6 +79,12 @@ jobs:
7979
test-file: ${{ fromJson(needs.find-tests.outputs.test-files) }}
8080
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
8181
steps:
82+
- name: Set short name
83+
id: set-name
84+
run: |
85+
SHORT_NAME=$(basename "${{ matrix.test-file }}")
86+
echo "short-name=$SHORT_NAME" >> $GITHUB_OUTPUT
87+
8288
- name: Check-out repository
8389
uses: actions/checkout@v4
8490

0 commit comments

Comments
 (0)