Skip to content

Commit 0968277

Browse files
nikolay-eclaude
andcommitted
fix: resolve CI lint issues
- ci.yml: split long pytest line for yamllint - automerge.yml: quote 'on' for yamllint truthy check - pre-commit: add 'datas' to codespell ignore (PyInstaller attribute) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 7eecf6a commit 0968277

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/automerge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Dependabot auto-merge
22

3-
on:
3+
'on':
44
pull_request_target:
55
types: [opened, synchronize, reopened]
66

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ jobs:
116116
117117
- name: Run Tests with Coverage
118118
run: |
119-
pytest -v --cov=src/treemapper --cov-report=xml --cov-report=term-missing --cov-branch --junitxml=test-results.xml
119+
pytest -v --cov=src/treemapper --cov-report=xml \
120+
--cov-report=term-missing --cov-branch --junitxml=test-results.xml
120121
121122
- name: Coverage report with threshold
122123
if: runner.os == 'Linux' && matrix.python-version == '3.12'

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ repos:
148148
hooks:
149149
- id: codespell
150150
args:
151-
["--write-changes", "--ignore-words-list=crate,nd,ser,llm,async,cli,theses"]
151+
["--write-changes", "--ignore-words-list=crate,nd,ser,llm,async,cli,theses,datas"]
152152
exclude: ^(\.git/|\.venv/|venv/)
153153

154154
# ============================================================================

0 commit comments

Comments
 (0)