Skip to content

Commit 1d5b3f1

Browse files
Rename CI job names (#5618)
Co-authored-by: Pierre Sassoulas <[email protected]>
1 parent 1e677a7 commit 1d5b3f1

File tree

2 files changed

+15
-19
lines changed

2 files changed

+15
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
pre-commit install --install-hooks
7575
7676
formatting:
77-
name: Run pre-commit checks
77+
name: checks / pre-commit
7878
runs-on: ubuntu-latest
7979
needs: prepare-base
8080
steps:
@@ -116,7 +116,7 @@ jobs:
116116
pre-commit run pylint --all-files
117117
118118
spelling:
119-
name: Run spelling checks
119+
name: checks / spelling
120120
runs-on: ubuntu-latest
121121
needs: prepare-base
122122
steps:
@@ -146,7 +146,7 @@ jobs:
146146
pytest tests/ -k unittest_spelling
147147
148148
prepare-tests-linux:
149-
name: Prepare tests for Python ${{ matrix.python-version }} (Linux)
149+
name: tests / prepare / ${{ matrix.python-version }} / Linux
150150
runs-on: ubuntu-latest
151151
strategy:
152152
matrix:
@@ -188,7 +188,7 @@ jobs:
188188
pip install -U -r requirements_test.txt
189189
190190
pytest-linux:
191-
name: Run tests Python ${{ matrix.python-version }} (Linux)
191+
name: tests / run / ${{ matrix.python-version }} / Linux
192192
runs-on: ubuntu-latest
193193
needs: prepare-tests-linux
194194
strategy:
@@ -227,7 +227,7 @@ jobs:
227227
path: .coverage
228228

229229
coverage:
230-
name: Process test coverage
230+
name: tests / process / coverage
231231
runs-on: ubuntu-latest
232232
needs: ["prepare-tests-linux", "pytest-linux"]
233233
strategy:
@@ -271,7 +271,7 @@ jobs:
271271
coveralls --rcfile=${{ env.COVERAGERC_FILE }} --service=github
272272
273273
benchmark-linux:
274-
name: Run benchmark tests Python ${{ matrix.python-version }} (Linux)
274+
name: tests / run benchmark / ${{ matrix.python-version }} / Linux
275275
runs-on: ubuntu-latest
276276
needs: prepare-tests-linux
277277
strategy:
@@ -322,7 +322,7 @@ jobs:
322322
path: .benchmarks/
323323

324324
prepare-tests-windows:
325-
name: Prepare tests for Python ${{ matrix.python-version }} (Windows)
325+
name: tests / prepare / ${{ matrix.python-version }} / Windows
326326
runs-on: windows-latest
327327
strategy:
328328
matrix:
@@ -364,7 +364,7 @@ jobs:
364364
pip install -U -r requirements_test_min.txt
365365
366366
pytest-windows:
367-
name: Run tests Python ${{ matrix.python-version }} (Windows)
367+
name: tests / run / ${{ matrix.python-version }} / Windows
368368
runs-on: windows-latest
369369
needs: prepare-tests-windows
370370
strategy:
@@ -402,7 +402,7 @@ jobs:
402402
pytest --benchmark-disable tests/
403403
404404
prepare-tests-pypy:
405-
name: Prepare tests for Python ${{ matrix.python-version }}
405+
name: tests / prepare / ${{ matrix.python-version }} / Linux
406406
runs-on: ubuntu-latest
407407
strategy:
408408
matrix:
@@ -444,7 +444,7 @@ jobs:
444444
pip install -U -r requirements_test_min.txt
445445
446446
pytest-pypy:
447-
name: Run tests Python ${{ matrix.python-version }}
447+
name: tests / run / ${{ matrix.python-version }} / Linux
448448
runs-on: ubuntu-latest
449449
needs: prepare-tests-pypy
450450
strategy:

.github/workflows/primer-test.yaml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Primer tests
1+
name: Primer
22

33
on:
44
push:
@@ -22,7 +22,7 @@ concurrency:
2222

2323
jobs:
2424
prepare-tests-linux:
25-
name: Prepare tests for Python ${{ matrix.python-version }} (Linux)
25+
name: prepare / ${{ matrix.python-version }} / Linux
2626
runs-on: ubuntu-latest
2727
strategy:
2828
matrix:
@@ -64,7 +64,7 @@ jobs:
6464
pip install -U -r requirements_test.txt
6565
6666
pytest-primer-stdlib:
67-
name: Run primer tests on stdlib Python ${{ matrix.python-version }} (Linux)
67+
name: run on stdlib / ${{ matrix.python-version }} / Linux
6868
runs-on: ubuntu-latest
6969
needs: prepare-tests-linux
7070
strategy:
@@ -98,9 +98,7 @@ jobs:
9898
pytest -m primer_stdlib --primer-stdlib -n auto
9999
100100
pytest-primer-external-batch-one:
101-
name:
102-
Run primer tests batch one on external libs Python ${{ matrix.python-version }}
103-
(Linux)
101+
name: run on batch one / ${{ matrix.python-version }} / Linux
104102
runs-on: ubuntu-latest
105103
needs: prepare-tests-linux
106104
strategy:
@@ -134,9 +132,7 @@ jobs:
134132
pytest -m primer_external_batch_one --primer-external -n auto
135133
136134
pytest-primer-external-batch-two:
137-
name:
138-
Run primer tests batch two on external libs Python ${{ matrix.python-version }}
139-
(Linux)
135+
name: run on batch two / ${{ matrix.python-version }} / Linux
140136
runs-on: ubuntu-latest
141137
needs: prepare-tests-linux
142138
strategy:

0 commit comments

Comments
 (0)