From ffc0dae6a4b2fd609cc48b296a457bc9dd7bcb3a Mon Sep 17 00:00:00 2001 From: Robert Resch Date: Thu, 27 Mar 2025 18:09:07 +0100 Subject: [PATCH] Fix file name --- .github/workflows/ci.yaml | 4 +--- .gitignore | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0f2b28eec3a..287a8c23eec 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -1009,7 +1009,7 @@ jobs: ${cov_params[@]} \ -o console_output_style=count \ -p no:sugar \ - --execution-time-report-name pytest-time-report-${{ matrix.python-version }}-${{ matrix.group }}.json \ + --execution-time-report-name pytest-execution-time-report-${{ matrix.python-version }}-${{ matrix.group }}.json \ --exclude-warning-annotations \ $(sed -n "${{ matrix.group }},1p" pytest_buckets.txt) \ 2>&1 | tee pytest-${{ matrix.python-version }}-${{ matrix.group }}.txt @@ -1035,8 +1035,6 @@ jobs: with: name: test-results-full-${{ matrix.python-version }}-${{ matrix.group }} path: junit.xml - - name: Remove pytest_buckets and pytest-time-report - run: rm pytest_buckets.txt pytest-time-report-${{ matrix.python-version }}-${{ matrix.group }}.json - name: Check dirty run: | ./script/check_dirty diff --git a/.gitignore b/.gitignore index f7f157e103f..a8c2c06b380 100644 --- a/.gitignore +++ b/.gitignore @@ -140,4 +140,4 @@ tmp_cache pytest_buckets.txt # Contains test execution times used for splitting tests -pytest-execution-time-report.json \ No newline at end of file +pytest-execution-time-report*.json \ No newline at end of file