Skip to content

Commit c4853e1

Browse files
authored
Update ci_poetry.yml
1 parent b163cb4 commit c4853e1

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci_poetry.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,13 @@ jobs:
4444

4545
- name: Test core library with pytest
4646
env:
47-
COVERAGE_FILE: "coverage-data-${{ runner.os }}-${{ matrix.python_version }}-core"
47+
COVERAGE_FILE: "coverage-data-${{ matrix.python-version }}-core"
4848
run: poetry run coverage run -m pytest tests --ignore tests/tasks --ignore tests/dev
4949

5050
- name: Upload coverage data
5151
uses: actions/upload-artifact@v4
5252
with:
53-
name: "coverage-data-${{ runner.os }}-${{ matrix.python_version }}-core"
53+
name: "coverage-data-${{ matrix.python-version }}-core"
5454
path: "coverage-data-*"
5555

5656
tests_tasks:
@@ -99,14 +99,14 @@ jobs:
9999

100100
- name: Test tasks with pytest
101101
env:
102-
COVERAGE_FILE: "coverage-data-${{ runner.os }}-${{ matrix.python_version }}-tasks"
102+
COVERAGE_FILE: "coverage-data-${{ matrix.python-version }}-tasks"
103103

104104
run: poetry run coverage run -m pytest tests/dev tests/tasks -s --log-cli-level info
105105

106106
- name: Upload coverage data
107107
uses: actions/upload-artifact@v4
108108
with:
109-
name: "coverage-data-${{ runner.os }}-${{ matrix.python_version }}-tasks"
109+
name: "coverage-data-${{ matrix.python-version }}-tasks"
110110
path: "coverage-data-*"
111111

112112
coverage:

0 commit comments

Comments
 (0)