File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -190,7 +190,10 @@ jobs:
190
190
echo "### Total coverage: ${TOTAL_COVERAGE}%"
191
191
192
192
- name : Produce the diff coverage report
193
- if : matrix.python-version == '3.13' && github.event_name == 'pull_request'
193
+ if : >-
194
+ matrix.python-version == '3.13' &&
195
+ github.event_name == 'pull_request' &&
196
+ !contains(github.event.pull_request.labels.*.name, 'ignore_diff_coverage')
194
197
run : |
195
198
source ${GITHUB_WORKSPACE}/.venv/bin/activate
196
199
git config --global --add safe.directory ${GITHUB_WORKSPACE}
@@ -199,7 +202,10 @@ jobs:
199
202
--format markdown:diff-coverage.md
200
203
201
204
- uses : actions/github-script@v7
202
- if : matrix.python-version == '3.13' && github.event_name == 'pull_request'
205
+ if : >-
206
+ matrix.python-version == '3.13' &&
207
+ github.event_name == 'pull_request' &&
208
+ !contains(github.event.pull_request.labels.*.name, 'ignore_diff_coverage')
203
209
with :
204
210
result-encoding : string
205
211
script : |
Original file line number Diff line number Diff line change 1
- """Logging for Tidy3d."""
1
+ """Logging Configuration for Tidy3d."""
2
2
3
3
from __future__ import annotations
4
4
You can’t perform that action at this time.
0 commit comments