Skip to content

Commit 8c2be2c

Browse files
Fix mocking of yaml and CI message
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
1 parent 8f9be5e commit 8c2be2c

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
fi
8686
8787
elif [[ "${{ github.event_name }}" == "pull_request" || "${{ github.event_name }}" == "workflow_dispatch" ]]; then
88-
echo "PR from fork: Running black and isort in check mode"
88+
echo "PR or manual run: Running black and isort in check mode"
8989
black --check . || { echo "Black formatting issues found. Run 'black .' to fix."; exit 1; }
9090
isort --check-only . || { echo "isort import order issues found. Run 'isort .' to fix."; exit 1; }
9191

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"rootutils",
8585
"numba",
8686
"numpy",
87-
"PyYAML",
87+
"yaml",
8888
]
8989

9090
# -- Intersphinx settings (cross-references to external docs) ----------------

0 commit comments

Comments
 (0)