This repository was archived by the owner on Jul 12, 2026. It is now read-only.
fix: resolve CI failures in test suite, security scan, and build jobs - #10
Merged
Conversation
- Fix flake8 F821 errors: add missing datetime import and TYPE_CHECKING import for PluginRegistry in cli.py - Fix bandit security issues: add usedforsecurity=False to MD5 hash calls, nosec annotations for false-positive SQL injection and safe XML parsing, and add B405/B408 to skip list for standard library XML imports - Fix build failure: remove reference to non-existent default_config.ini in PyInstaller spec, use explicit data file paths instead - Fix 6 test failures: update duplicate URL test for new warning behavior, fix pandas StringDtype compatibility in _clean_dataframe_values, fix _display_bookmark_preview null console handling, fix floating-point comparison in confidence test, fix checkpoint size measurement logic, fix Path.stat mock in import module test https://claude.ai/code/session_01JFrgaGfSxVgNfWhws8TSZM
Update bookmark_processor.spec to match build_linux.py changes (remove non-existent default_config.ini, update hidden imports). Set execute permission on build_linux.sh. https://claude.ai/code/session_01JFrgaGfSxVgNfWhws8TSZM
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
import for PluginRegistry in cli.py
nosec annotations for false-positive SQL injection and safe XML parsing,
and add B405/B408 to skip list for standard library XML imports
in PyInstaller spec, use explicit data file paths instead
fix pandas StringDtype compatibility in _clean_dataframe_values,
fix _display_bookmark_preview null console handling, fix floating-point
comparison in confidence test, fix checkpoint size measurement logic,
fix Path.stat mock in import module test
https://claude.ai/code/session_01JFrgaGfSxVgNfWhws8TSZM