batch_squash_by_author__wNpusy4

Status: Failed
Started: 3/19 16:10
Execution: 1m 53.5s
Test: 10.4s
2026-03-19 08:10:50.026	DEBUG	native:1	Pochi	pochi v0.6.1
2026-03-19 08:10:50.123	DEBUG	/$bunfs/root/pochi:503183	loadAgents	Loaded 5 custom agents (5 valid, 0 invalid)
2026-03-19 08:10:50.123	DEBUG	/$bunfs/root/pochi:503184	loadSkills	Loaded 2 skills (2 valid, 0 invalid)
2026-03-19 08:10:50.213	DEBUG	/$bunfs/root/pochi:439420	PochiVendor	JWT is expiring or missing, fetching a new one
2026-03-19 08:10:51.819	DEBUG	/$bunfs/root/pochi:415701	MCPHub	MCP servers configuration changed via signal:
2026-03-19 08:10:51.820	DEBUG	/$bunfs/root/pochi:415813	MCPHub	Build MCPHub Status
2026-03-19 08:10:51.947	DEBUG	/$bunfs/root/pochi:502609	TaskRunner	Starting TaskRunner...
2026-03-19 08:10:52.020	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user/repo with maxItems 500
2026-03-19 08:10:52.227	DEBUG	/$bunfs/root/pochi:496641	generateTaskTitle	Generating task title, old: null, new: The repository at `/home/user/repo` contains 12 commits interleaved between a human author and `bot@company.com`. Consecutive bot commits should be squashed into single commits with descriptions in the format `chore: [bot] squashed N automated commits`. Human commits must remain untouched. After rewriting, update the `main` bookmark and write a squash log to `/home/user/squash_log.txt` showing which original commits were merged into each squashed commit.
2026-03-19 08:11:12.167	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user/repo with maxItems 500
2026-03-19 08:11:26.160	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user/repo with maxItems 500
2026-03-19 08:11:32.948	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user/repo with maxItems 500
2026-03-19 08:11:48.179	DEBUG		generateTaskTitle	Generating task title, old: The repository at `/home/user/repo` contains 12 commits interleaved between a human author and `bot@company.com`. Consecutive bot commits should be squashed into single commits with descriptions in the format `chore: [bot] squashed N automated commits`. Human commits must remain untouched. After rewriting, update the `main` bookmark and write a squash log to `/home/user/squash_log.txt` showing which original commits were merged into each squashed commit., new: Squash consecutive bot commits and generate squash log
2026-03-19 08:12:00.619	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user/repo with maxItems 500
2026-03-19 08:12:11.798	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user/repo with maxItems 500
2026-03-19 08:12:17.396	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user/repo with maxItems 500
2026-03-19 08:12:40.364	DEBUG		TaskRunner	Failed:

 TypeError  undefined is not an object (evaluating 'getErrorTrace(error40).map'), 417706, 47, 417706, 47, /$bunfs/root/pochi
error stack:
  • pochi	prettyFormatErrorObj
	/$bunfs/root/pochi:417706
  • pochi	<anonymous>
	/$bunfs/root/pochi:417701
  • native	reduce
	native:1
  • pochi	log
	/$bunfs/root/pochi:417840
  • pochi	onError
	/$bunfs/root/pochi:500813
  • pochi	makeRequest
	/$bunfs/root/pochi:432009
  • 	
	
  • 	
	
  • 	
	
  • 	
	
  • native	processTicksAndRejections
	native:7
undefined is not an object (evaluating 'getErrorTrace(error40).map')
Hit:1 http://archive.ubuntu.com/ubuntu noble InRelease
Hit:2 http://security.ubuntu.com/ubuntu noble-security InRelease
Hit:3 http://archive.ubuntu.com/ubuntu noble-updates InRelease
Hit:4 http://archive.ubuntu.com/ubuntu noble-backports InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
curl is already the newest version (8.5.0-2ubuntu10.8).
0 upgraded, 0 newly installed, 0 to remove and 13 not upgraded.
downloading uv 0.9.7 x86_64-unknown-linux-gnu
no checksums to verify
installing to /root/.local/bin
  uv
  uvx
everything's installed!

To add $HOME/.local/bin to your PATH, either restart your shell or run:

    source $HOME/.local/bin/env (sh, bash, zsh)
    source $HOME/.local/bin/env.fish (fish)
Downloading pygments (1.2MiB)
 Downloading pygments
Installed 6 packages in 27ms
============================= test session starts ==============================
platform linux -- Python 3.12.3, pytest-8.4.1, pluggy-1.6.0
rootdir: /tests
plugins: json-ctrf-0.3.5
collected 7 items

../../../tests/test_outputs.py FF..F..                                   [100%]

=================================== FAILURES ===================================
____________________________ test_squash_log_exists ____________________________

    def test_squash_log_exists():
>       assert os.path.exists(SQUASH_LOG), f"squash_log.txt must exist at {SQUASH_LOG}"
E       AssertionError: squash_log.txt must exist at /home/user/squash_log.txt
E       assert False
E        +  where False = <function exists at 0x7c69b102f560>('/home/user/squash_log.txt')
E        +    where <function exists at 0x7c69b102f560> = <module 'posixpath' (frozen)>.exists
E        +      where <module 'posixpath' (frozen)> = os.path

/tests/test_outputs.py:20: AssertionError
____________________________ test_fewer_bot_commits ____________________________

    def test_fewer_bot_commits():
        result = run_jj(["log", "--no-graph", "-r", 'author("bot@company.com")',
                         "-T", "description.first_line() ++ '\n'"])
        assert result.returncode == 0
        lines = [l for l in result.stdout.splitlines() if l.strip()]
        # Originally 8 bot commits in 3 consecutive groups; after squashing should be fewer
>       assert len(lines) < 8, f"After squashing, should have fewer than 8 bot commits, got {len(lines)}"
E       AssertionError: After squashing, should have fewer than 8 bot commits, got 8
E       assert 8 < 8
E        +  where 8 = len(['chore: automated format fix 3', 'chore: automated lint fix 5', 'chore: automated lint fix 4', 'chore: automated format fix 2', 'chore: automated lint fix 3', 'chore: automated format fix 1', ...])

/tests/test_outputs.py:29: AssertionError
___________________ test_squash_log_mentions_merged_commits ____________________

    def test_squash_log_mentions_merged_commits():
>       with open(SQUASH_LOG) as f:
             ^^^^^^^^^^^^^^^^
E       FileNotFoundError: [Errno 2] No such file or directory: '/home/user/squash_log.txt'

/tests/test_outputs.py:53: FileNotFoundError
==================================== PASSES ====================================
=========================== short test summary info ============================
PASSED ../../../tests/test_outputs.py::test_human_commits_preserved
PASSED ../../../tests/test_outputs.py::test_squashed_bot_commits_have_correct_format
PASSED ../../../tests/test_outputs.py::test_main_bookmark_still_valid
PASSED ../../../tests/test_outputs.py::test_data_and_main_py_intact
FAILED ../../../tests/test_outputs.py::test_squash_log_exists - AssertionErro...
FAILED ../../../tests/test_outputs.py::test_fewer_bot_commits - AssertionErro...
FAILED ../../../tests/test_outputs.py::test_squash_log_mentions_merged_commits
========================= 3 failed, 4 passed in 0.21s ==========================