Skip to content

Commit ed876dd

Browse files
🔧 🤖 Ignore CI comments on PR label (#2519)
* apply ignore_diff_coverage * Small test change
1 parent 518ea14 commit ed876dd

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

.github/workflows/run_tests.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,10 @@ jobs:
190190
echo "### Total coverage: ${TOTAL_COVERAGE}%"
191191
192192
- 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')
194197
run: |
195198
source ${GITHUB_WORKSPACE}/.venv/bin/activate
196199
git config --global --add safe.directory ${GITHUB_WORKSPACE}
@@ -199,7 +202,10 @@ jobs:
199202
--format markdown:diff-coverage.md
200203
201204
- 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')
203209
with:
204210
result-encoding: string
205211
script: |

tidy3d/log.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Logging for Tidy3d."""
1+
"""Logging Configuration for Tidy3d."""
22

33
from __future__ import annotations
44

0 commit comments

Comments
 (0)