Skip to content

Commit f1fa2fe

Browse files
committed
add meaningful test names
1 parent 6cf1366 commit f1fa2fe

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/test_package.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ on:
88

99
jobs:
1010
build:
11-
1211
runs-on: ubuntu-latest
12+
1313
strategy:
1414
matrix:
1515
include:
@@ -38,6 +38,11 @@ jobs:
3838
- python-version: "3.11"
3939
numpy-version: "2.3.1"
4040

41+
name: >-
42+
Python ${{ matrix.python-version }}
43+
${{ matrix.sklearn-version && format('(scikit-learn {0})', matrix.sklearn-version) || '' }}
44+
${{ matrix.numpy-version && format('(NumPy {0})', matrix.numpy-version) || '' }}
45+
4146
steps:
4247
- uses: actions/checkout@v5
4348

@@ -70,4 +75,4 @@ jobs:
7075
- name: Test with pytest
7176
run: |
7277
pip install pytest
73-
pytest
78+
pytest

0 commit comments

Comments
 (0)