From 2123609ffdd3d61b58f1d9b204c31d4159a7a033 Mon Sep 17 00:00:00 2001 From: Sina Atalay Date: Sat, 7 Sep 2024 19:02:00 -0400 Subject: [PATCH] workflows: fix test.yaml --- .github/workflows/test.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e0ac4d6e..26385559 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -57,9 +57,10 @@ jobs: uses: pypa/hatch@install - name: Test - run: | - hatch run test:coverage run -m pytest - mv .coverage .coverage.${{ matrix.python-version }}.${{ matrix.os }} + run: hatch run test:coverage run -m pytest + + - name: Rename the coverage file + run: mv .coverage .coverage.${{ matrix.python-version }}.${{ matrix.os }} - name: Store coverage files uses: actions/upload-artifact@v4