File tree Expand file tree Collapse file tree
scripts/version_scanner/tests/unit Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11name : Version Scanner
22
33on :
4- workflow_dispatch :
4+ push :
5+ branches :
6+ - main
57 schedule :
6- - cron : ' 0 0 * * * ' # Run daily at midnight UTC
7- pull_request :
8+ - cron : ' 0 7 * * 2 ' # Run weekly on Tuesdays at 7 AM UTC (mirrors main.yml)
9+ workflow_dispatch :
810
911jobs :
1012 scan :
1618 - name : Set up Python
1719 uses : actions/setup-python@v5
1820 with :
19- python-version : ' 3.12 '
21+ python-version : ' 3.14 '
2022
2123 - name : Install dependencies
2224 run : |
Original file line number Diff line number Diff line change @@ -513,7 +513,7 @@ def test_main_stdout(capsys):
513513 assert "=== CSV Output ===" in captured .out
514514 assert "test.py," in captured .out
515515 assert "test," in captured .out
516- assert '=" 3.7"' in captured .out
516+ assert '"="" 3.7"" "' in captured .out
517517
518518def test_scan_file_truncation_bug (tmp_path ):
519519 """Test that searching for 3.1 does NOT match 3.10 (truncation bug)."""
You can’t perform that action at this time.
0 commit comments