Merged
Conversation
- Add test.yml workflow that runs on PRs and main branch pushes - Test on Python 3.10 and 3.11 across ubuntu-latest and macos-latest - Use uv for fast dependency management - Run pytest and ruff linter/formatter checks - Linting checks are non-blocking to allow iteration on code quality - Fix multiple ruff linting issues (unused imports, f-string placeholders, ambiguous variable names) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
…t.py Replace nested f-strings with escaped quotes (Python 3.12+ only) with a two-step approach that works in Python 3.10+: - Extract label_html variable first - Use the variable in the outer f-string This fixes CI failures on Python 3.10 and 3.11. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
…uotes Replace nested f-string with triple quotes (Python 3.12+ only) with string concatenation approach that works in Python 3.10+. This was causing import errors in Python 3.10 and 3.11. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
- Created script to generate README screenshots - Added comprehensive test suite (11 tests) - Added CI workflow for automatic generation - Updated README with screenshots section - Added documentation (SCREENSHOT_SYSTEM.md, SETUP.md) - Generated initial screenshots from captures Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
The --system flag prevents uv from using virtual environments, which causes failures on macOS with Homebrew's externally-managed Python. Removing the flag allows uv to handle virtual environments automatically, fixing the CI error while maintaining the same functionality. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
After removing --system flag, uv requires a virtual environment. Added explicit venv creation step to fix CI error. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Updated screenshots workflow to: - Create a single shared .venv in the workspace root - Activate the venv before each installation/execution step - Use direct python/playwright commands instead of uv run This ensures all packages are installed into the same environment and playwright can be found when installing browsers. Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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 join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Fixes nested f-string syntax that only works in Python 3.12+. This was causing CI failures on Python 3.10 and 3.11.
Changed lines 92 and 102 in screenshot.py to use a two-step approach:
All tests pass locally (122 passed, 5 skipped).
Generated with Claude Code