git_interop_colocate_13__n5UCdnc

Status: Failed
Started: 3/19 15:20
Execution: 18.9s
Test: 11.0s
2026-03-19 07:20:36.980	DEBUG	native:1	Pochi	pochi v0.6.0
2026-03-19 07:20:36.984	DEBUG	native:7	PochiConfigManager	add workspace config: /root/.pochi/config.jsonc
2026-03-19 07:20:37.071	DEBUG	/$bunfs/pochi:503027	loadAgents	Loaded 4 custom agents (4 valid, 0 invalid)
2026-03-19 07:20:37.072	DEBUG	/$bunfs/pochi:503028	loadSkills	Loaded 2 skills (2 valid, 0 invalid)
2026-03-19 07:20:37.145	DEBUG	/$bunfs/pochi:439288	PochiVendor	JWT is expiring or missing, fetching a new one
2026-03-19 07:20:38.937	DEBUG	/$bunfs/pochi:415701	MCPHub	MCP servers configuration changed via signal:
2026-03-19 07:20:38.937	DEBUG	/$bunfs/pochi:415813	MCPHub	Build MCPHub Status
2026-03-19 07:20:39.120	DEBUG	/$bunfs/pochi:502453	TaskRunner	Starting TaskRunner...
2026-03-19 07:20:39.148	DEBUG	/$bunfs/pochi:454195	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 07:20:39.267	DEBUG	/$bunfs/pochi:496495	generateTaskTitle	Generating task title, old: null, new: You are a developer migrating from Git to Jujutsu (jj). You have an existing local Git repository at `/home/user/my-project`. Your task is to start using jj with this repository without breaking Git compatibility.\n\n1. Navigate to `/home/user/my-project`.\n2. Initialize a colocated jj repository so that jj and Git can be used together.\n3. Create a new bookmark named `feature-x`.\n4. Create a new file named `feature.txt` containing the text `Hello jj`.\n5. Create a new jj commit (or describe the working copy) with the description `Add feature.txt`.\n\nWhen finished, the repository should be a valid colocated jj/Git repo, the `feature-x` bookmark should exist and be exported to Git, and the commit should have the specified description and file.
2026-03-19 07:20:50.863	DEBUG	/$bunfs/pochi:454195	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 07:20:51.161	WARN		GitStatus	readGitStatus timed out after 12000ms, returning undefined
2026-03-19 07:20:53.051	DEBUG	/$bunfs/pochi:503113	TaskRunner	Failed:

 TypeError  undefined is not an object (evaluating 'getErrorTrace(error40).map'), 417706, 47, 417706, 47, /$bunfs/root/pochi
error stack:
  • pochi	prettyFormatErrorObj
	/$bunfs/pochi:417706
  • pochi	<anonymous>
	/$bunfs/pochi:417701
  • native	reduce
	native:1
  • pochi	log
	/$bunfs/pochi:417840
  • pochi	onError
	/$bunfs/pochi:500661
  • pochi	makeRequest
	/$bunfs/pochi:432009
  • pochi	async <anonymous>
	/$bunfs/pochi:431766
  • pochi	async step
	/$bunfs/pochi:502582
  • pochi	async run
	/$bunfs/pochi:502459
  • pochi	async <anonymous>
	/$bunfs/pochi:503113
  • 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.5 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 5 packages in 14ms
============================= test session starts ==============================
platform linux -- Python 3.12.3, pytest-8.4.1, pluggy-1.6.0 -- /root/.cache/uv/archive-v0/TNYnE6lvn4Ii_Ee-Tr45p/bin/python
cachedir: .pytest_cache
rootdir: /tests
collecting ... collected 5 items

../../tests/test_final_state.py::test_jj_directory_exists FAILED         [ 20%]
../../tests/test_final_state.py::test_jj_bookmark_exists FAILED          [ 40%]
../../tests/test_final_state.py::test_git_branch_exists FAILED           [ 60%]
../../tests/test_final_state.py::test_head_commit_description FAILED     [ 80%]
../../tests/test_final_state.py::test_feature_file_exists_and_content FAILED [100%]

=================================== FAILURES ===================================
___________________________ test_jj_directory_exists ___________________________

    def test_jj_directory_exists():
        dot_jj = os.path.join(REPO_DIR, ".jj")
>       assert os.path.isdir(dot_jj), f"The .jj directory does not exist. Did you run `jj git init --colocate`?"
E       AssertionError: The .jj directory does not exist. Did you run `jj git init --colocate`?
E       assert False
E        +  where False = <function isdir at 0x76a43a7982c0>('/home/user/my-project/.jj')
E        +    where <function isdir at 0x76a43a7982c0> = <module 'posixpath' (frozen)>.isdir
E        +      where <module 'posixpath' (frozen)> = os.path

/tests/test_final_state.py:12: AssertionError
___________________________ test_jj_bookmark_exists ____________________________

    def test_jj_bookmark_exists():
        result = run_cmd("jj", "bookmark", "list")
>       assert result.returncode == 0, f"jj bookmark list failed: {result.stderr}"
E       AssertionError: jj bookmark list failed: Error: There is no jj repo in "."
E         Hint: It looks like this is a git repo. You can create a jj repo backed by it by running this:
E         jj git init
E         
E       assert 1 == 0
E        +  where 1 = CompletedProcess(args=['jj', 'bookmark', 'list'], returncode=1, stdout='', stderr='Error: There is no jj repo in "."\nHint: It looks like this is a git repo. You can create a jj repo backed by it by running this:\njj git init\n').returncode

/tests/test_final_state.py:16: AssertionError
____________________________ test_git_branch_exists ____________________________

    def test_git_branch_exists():
        result = run_cmd("git", "branch")
        assert result.returncode == 0, f"git branch failed: {result.stderr}"
>       assert "feature-x" in result.stdout, "The git branch 'feature-x' does not exist. Make sure the jj bookmark was exported to Git."
E       AssertionError: The git branch 'feature-x' does not exist. Make sure the jj bookmark was exported to Git.
E       assert 'feature-x' in '* main\n'
E        +  where '* main\n' = CompletedProcess(args=['git', 'branch'], returncode=0, stdout='* main\n', stderr='').stdout

/tests/test_final_state.py:22: AssertionError
_________________________ test_head_commit_description _________________________

    def test_head_commit_description():
        result = run_cmd("jj", "log", "--no-graph", "-r", "@", "-T", "description")
>       assert result.returncode == 0, f"jj log failed: {result.stderr}"
E       AssertionError: jj log failed: Error: There is no jj repo in "."
E         Hint: It looks like this is a git repo. You can create a jj repo backed by it by running this:
E         jj git init
E         
E       assert 1 == 0
E        +  where 1 = CompletedProcess(args=['jj', 'log', '--no-graph', '-r', '@', '-T', 'description'], returncode=1, stdout='', stderr='Error: There is no jj repo in "."\nHint: It looks like this is a git repo. You can create a jj repo backed by it by running this:\njj git init\n').returncode

/tests/test_final_state.py:26: AssertionError
_____________________ test_feature_file_exists_and_content _____________________

    def test_feature_file_exists_and_content():
        feature_file = os.path.join(REPO_DIR, "feature.txt")
>       assert os.path.isfile(feature_file), "The file 'feature.txt' does not exist in the working copy."
E       AssertionError: The file 'feature.txt' does not exist in the working copy.
E       assert False
E        +  where False = <function isfile at 0x76a43a798220>('/home/user/my-project/feature.txt')
E        +    where <function isfile at 0x76a43a798220> = <module 'posixpath' (frozen)>.isfile
E        +      where <module 'posixpath' (frozen)> = os.path

/tests/test_final_state.py:31: AssertionError
=========================== short test summary info ============================
FAILED ../../tests/test_final_state.py::test_jj_directory_exists - AssertionE...
FAILED ../../tests/test_final_state.py::test_jj_bookmark_exists - AssertionEr...
FAILED ../../tests/test_final_state.py::test_git_branch_exists - AssertionErr...
FAILED ../../tests/test_final_state.py::test_head_commit_description - Assert...
FAILED ../../tests/test_final_state.py::test_feature_file_exists_and_content
============================== 5 failed in 0.05s ===============================