Skip to content

Commit 8cc40e9

Browse files
committed
correct and better name reactor
1 parent c83d77e commit 8cc40e9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
test:
13-
name: ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ default }}
13+
name: ${{ matrix.os.name }} ${{ matrix.python.name }} ${{ matrix.reactor.name }}
1414
runs-on: ${{ matrix.os.runs-on }}
1515
strategy:
1616
fail-fast: false
@@ -36,9 +36,12 @@ jobs:
3636
tox: py37
3737
action: 3.7
3838
reactor:
39-
- default
40-
- qt5
41-
- asyncio
39+
- name: default
40+
tox: default
41+
- name: Qt5
42+
tox: qt5
43+
- name: asyncio
44+
tox: asyncio
4245
exclude:
4346
- python:
4447
tox: py27
@@ -66,7 +69,7 @@ jobs:
6669
run: |
6770
import sys
6871
69-
toxenv = '${{ matrix.python.tox }}-${{ matrix.reactor }}reactor'
72+
toxenv = '${{ matrix.python.tox }}-${{ matrix.reactor.tox }}reactor'
7073
7174
if sys.platform == 'win32':
7275
toxenv = 'win-' + toxenv

0 commit comments

Comments
 (0)