We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7359084 commit 7e05401Copy full SHA for 7e05401
.github/workflows/tests.yaml
@@ -39,6 +39,12 @@ jobs:
39
run: python .github/workflows/install_deps.py
40
- name: Run tests and flake8
41
run: python .github/workflows/run_tests.py
42
+ - name: Upload logs from unit tests
43
+ uses: actions/upload-artifact@v4
44
+ with:
45
+ name: logs-${{ matrix.os }}
46
+ path: ${{ runner.temp }}/*.coverage.*
47
+ retention-days: 1
48
49
post-unit-coverage:
50
runs-on: ${{ matrix.os }}
@@ -58,6 +64,11 @@ jobs:
58
64
- name: Install dependencies
59
65
60
66
67
+ - name: Download logs from unit tests
68
69
70
71
+ path: ${{ runner.temp }}
61
72
- name: Combine coverage
62
73
run: python .github/workflows/run_tests.py combine
63
74
0 commit comments