Skip to content

Rename CI job names #5618

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
pre-commit install --install-hooks

formatting:
name: Run pre-commit checks
name: checks / pre-commit
runs-on: ubuntu-latest
needs: prepare-base
steps:
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
pre-commit run pylint --all-files

spelling:
name: Run spelling checks
name: checks / spelling
runs-on: ubuntu-latest
needs: prepare-base
steps:
Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
pytest tests/ -k unittest_spelling

prepare-tests-linux:
name: Prepare tests for Python ${{ matrix.python-version }} (Linux)
name: tests / prepare / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
pip install -U -r requirements_test.txt

pytest-linux:
name: Run tests Python ${{ matrix.python-version }} (Linux)
name: tests / run / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
needs: prepare-tests-linux
strategy:
Expand Down Expand Up @@ -227,7 +227,7 @@ jobs:
path: .coverage

coverage:
name: Process test coverage
name: tests / process / coverage
runs-on: ubuntu-latest
needs: ["prepare-tests-linux", "pytest-linux"]
strategy:
Expand Down Expand Up @@ -271,7 +271,7 @@ jobs:
coveralls --rcfile=${{ env.COVERAGERC_FILE }} --service=github

benchmark-linux:
name: Run benchmark tests Python ${{ matrix.python-version }} (Linux)
name: tests / run benchmark / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
needs: prepare-tests-linux
strategy:
Expand Down Expand Up @@ -322,7 +322,7 @@ jobs:
path: .benchmarks/

prepare-tests-windows:
name: Prepare tests for Python ${{ matrix.python-version }} (Windows)
name: tests / prepare / ${{ matrix.python-version }} / Windows
runs-on: windows-latest
strategy:
matrix:
Expand Down Expand Up @@ -364,7 +364,7 @@ jobs:
pip install -U -r requirements_test_min.txt

pytest-windows:
name: Run tests Python ${{ matrix.python-version }} (Windows)
name: tests / run / ${{ matrix.python-version }} / Windows
runs-on: windows-latest
needs: prepare-tests-windows
strategy:
Expand Down Expand Up @@ -402,7 +402,7 @@ jobs:
pytest --benchmark-disable tests/

prepare-tests-pypy:
name: Prepare tests for Python ${{ matrix.python-version }}
name: tests / prepare / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -444,7 +444,7 @@ jobs:
pip install -U -r requirements_test_min.txt

pytest-pypy:
name: Run tests Python ${{ matrix.python-version }}
name: tests / run / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
needs: prepare-tests-pypy
strategy:
Expand Down
14 changes: 5 additions & 9 deletions .github/workflows/primer-test.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Primer tests
name: Primer

on:
push:
Expand All @@ -22,7 +22,7 @@ concurrency:

jobs:
prepare-tests-linux:
name: Prepare tests for Python ${{ matrix.python-version }} (Linux)
name: prepare / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
pip install -U -r requirements_test.txt

pytest-primer-stdlib:
name: Run primer tests on stdlib Python ${{ matrix.python-version }} (Linux)
name: run on stdlib / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
needs: prepare-tests-linux
strategy:
Expand Down Expand Up @@ -98,9 +98,7 @@ jobs:
pytest -m primer_stdlib --primer-stdlib -n auto

pytest-primer-external-batch-one:
name:
Run primer tests batch one on external libs Python ${{ matrix.python-version }}
(Linux)
name: run on batch one / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
needs: prepare-tests-linux
strategy:
Expand Down Expand Up @@ -134,9 +132,7 @@ jobs:
pytest -m primer_external_batch_one --primer-external -n auto

pytest-primer-external-batch-two:
name:
Run primer tests batch two on external libs Python ${{ matrix.python-version }}
(Linux)
name: run on batch two / ${{ matrix.python-version }} / Linux
runs-on: ubuntu-latest
needs: prepare-tests-linux
strategy:
Expand Down