git_remote_migration__9NQL2RD

Status: Failed
Started: 3/19 15:29
Execution: 1m 10.3s
Test: 12.0s
2026-03-19 07:38:18.595	DEBUG	native:1	Pochi	pochi v0.6.1
2026-03-19 07:38:18.984	DEBUG	/$bunfs/root/pochi:503183	loadAgents	Loaded 5 custom agents (5 valid, 0 invalid)
2026-03-19 07:38:18.985	DEBUG	/$bunfs/root/pochi:503184	loadSkills	Loaded 2 skills (2 valid, 0 invalid)
2026-03-19 07:38:19.024	DEBUG	/$bunfs/root/pochi:439420	PochiVendor	JWT is expiring or missing, fetching a new one
2026-03-19 07:38:20.387	DEBUG	/$bunfs/root/pochi:415701	MCPHub	MCP servers configuration changed via signal:
2026-03-19 07:38:20.388	DEBUG	/$bunfs/root/pochi:415813	MCPHub	Build MCPHub Status
2026-03-19 07:38:20.498	DEBUG	/$bunfs/root/pochi:502609	TaskRunner	Starting TaskRunner...
2026-03-19 07:38:20.565	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user with maxItems 500
2026-03-19 07:38:20.684	DEBUG	/$bunfs/root/pochi:496641	generateTaskTitle	Generating task title, old: null, new: # Task: Migrate a Git Repository to Jujutsu
2026-03-19 07:38:39.836	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user with maxItems 500
2026-03-19 07:38:46.962	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user with maxItems 500
2026-03-19 07:38:48.025	DEBUG	/$bunfs/root/pochi:496641	generateTaskTitle	Generating task title, old: # Task: Migrate a Git Repository to Jujutsu, new: Migrate a Git repository to Jujutsu
2026-03-19 07:38:59.399	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user with maxItems 500
2026-03-19 07:39:09.961	DEBUG	/$bunfs/root/pochi:454339	listFiles	Listing workspace files from /home/user with maxItems 500
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 43ms
============================= test session starts ==============================
platform linux -- Python 3.12.3, pytest-8.4.1, pluggy-1.6.0 -- /root/.cache/uv/archive-v0/l9DaaIQXbXhHi1onwTb9F/bin/python
cachedir: .pytest_cache
rootdir: /tests
collecting ... collected 3 items

../../tests/test_final_state.py::test_project_is_colocated_repo PASSED   [ 33%]
../../tests/test_final_state.py::test_upstream_remote_added PASSED       [ 66%]
../../tests/test_final_state.py::test_working_copy_rebased FAILED        [100%]

=================================== FAILURES ===================================
__________________________ test_working_copy_rebased ___________________________

    def test_working_copy_rebased():
        result = subprocess.run(
            ["jj", "log", "-r", "@", "--no-graph", "-T", "parents.map(|c| c.bookmarks()).join(', ')"],
            cwd=PROJECT_REPO,
            capture_output=True,
            text=True,
        )
        assert result.returncode == 0, f"jj log failed: {result.stderr}"
>       assert "main@upstream" in result.stdout, "Working copy parent is not main@upstream."
E       AssertionError: Working copy parent is not main@upstream.
E       assert 'main@upstream' in 'main'
E        +  where 'main' = CompletedProcess(args=['jj', 'log', '-r', '@', '--no-graph', '-T', "parents.map(|c| c.bookmarks()).join(', ')"], returncode=0, stdout='main', stderr='').stdout

/tests/test_final_state.py:40: AssertionError
=========================== short test summary info ============================
FAILED ../../tests/test_final_state.py::test_working_copy_rebased - Assertion...
========================= 1 failed, 2 passed in 0.07s ==========================