|
74 | 74 | pre-commit install --install-hooks |
75 | 75 |
|
76 | 76 | formatting: |
77 | | - name: Run pre-commit checks |
| 77 | + name: checks / pre-commit |
78 | 78 | runs-on: ubuntu-latest |
79 | 79 | needs: prepare-base |
80 | 80 | steps: |
@@ -116,7 +116,7 @@ jobs: |
116 | 116 | pre-commit run pylint --all-files |
117 | 117 |
|
118 | 118 | spelling: |
119 | | - name: Run spelling checks |
| 119 | + name: checks / spelling |
120 | 120 | runs-on: ubuntu-latest |
121 | 121 | needs: prepare-base |
122 | 122 | steps: |
@@ -146,7 +146,7 @@ jobs: |
146 | 146 | pytest tests/ -k unittest_spelling |
147 | 147 |
|
148 | 148 | prepare-tests-linux: |
149 | | - name: Prepare tests for Python ${{ matrix.python-version }} (Linux) |
| 149 | + name: tests / prepare / ${{ matrix.python-version }} / Linux |
150 | 150 | runs-on: ubuntu-latest |
151 | 151 | strategy: |
152 | 152 | matrix: |
@@ -188,7 +188,7 @@ jobs: |
188 | 188 | pip install -U -r requirements_test.txt |
189 | 189 |
|
190 | 190 | pytest-linux: |
191 | | - name: Run tests Python ${{ matrix.python-version }} (Linux) |
| 191 | + name: tests / run / ${{ matrix.python-version }} / Linux |
192 | 192 | runs-on: ubuntu-latest |
193 | 193 | needs: prepare-tests-linux |
194 | 194 | strategy: |
@@ -227,7 +227,7 @@ jobs: |
227 | 227 | path: .coverage |
228 | 228 |
|
229 | 229 | coverage: |
230 | | - name: Process test coverage |
| 230 | + name: tests / process / coverage |
231 | 231 | runs-on: ubuntu-latest |
232 | 232 | needs: ["prepare-tests-linux", "pytest-linux"] |
233 | 233 | strategy: |
@@ -271,7 +271,7 @@ jobs: |
271 | 271 | coveralls --rcfile=${{ env.COVERAGERC_FILE }} --service=github |
272 | 272 |
|
273 | 273 | benchmark-linux: |
274 | | - name: Run benchmark tests Python ${{ matrix.python-version }} (Linux) |
| 274 | + name: tests / run benchmark / ${{ matrix.python-version }} / Linux |
275 | 275 | runs-on: ubuntu-latest |
276 | 276 | needs: prepare-tests-linux |
277 | 277 | strategy: |
@@ -322,7 +322,7 @@ jobs: |
322 | 322 | path: .benchmarks/ |
323 | 323 |
|
324 | 324 | prepare-tests-windows: |
325 | | - name: Prepare tests for Python ${{ matrix.python-version }} (Windows) |
| 325 | + name: tests / prepare / ${{ matrix.python-version }} / Windows |
326 | 326 | runs-on: windows-latest |
327 | 327 | strategy: |
328 | 328 | matrix: |
@@ -364,7 +364,7 @@ jobs: |
364 | 364 | pip install -U -r requirements_test_min.txt |
365 | 365 |
|
366 | 366 | pytest-windows: |
367 | | - name: Run tests Python ${{ matrix.python-version }} (Windows) |
| 367 | + name: tests / run / ${{ matrix.python-version }} / Windows |
368 | 368 | runs-on: windows-latest |
369 | 369 | needs: prepare-tests-windows |
370 | 370 | strategy: |
@@ -402,7 +402,7 @@ jobs: |
402 | 402 | pytest --benchmark-disable tests/ |
403 | 403 |
|
404 | 404 | prepare-tests-pypy: |
405 | | - name: Prepare tests for Python ${{ matrix.python-version }} |
| 405 | + name: tests / prepare / ${{ matrix.python-version }} / Linux |
406 | 406 | runs-on: ubuntu-latest |
407 | 407 | strategy: |
408 | 408 | matrix: |
@@ -444,7 +444,7 @@ jobs: |
444 | 444 | pip install -U -r requirements_test_min.txt |
445 | 445 |
|
446 | 446 | pytest-pypy: |
447 | | - name: Run tests Python ${{ matrix.python-version }} |
| 447 | + name: tests / run / ${{ matrix.python-version }} / Linux |
448 | 448 | runs-on: ubuntu-latest |
449 | 449 | needs: prepare-tests-pypy |
450 | 450 | strategy: |
|
0 commit comments