init_user_config__nC5PqQu

Status: Failed
Started: 3/19 15:20
Execution: 39.1s
Test: 16.8s
2026-03-19 07:20:44.965	DEBUG	native:1	Pochi	pochi v0.6.0
2026-03-19 07:20:45.018	DEBUG	native:7	PochiConfigManager	add workspace config: /root/.pochi/config.jsonc
2026-03-19 07:20:45.238	DEBUG	/$bunfs/pochi:503027	loadAgents	Loaded 4 custom agents (4 valid, 0 invalid)
2026-03-19 07:20:45.239	DEBUG	/$bunfs/pochi:503028	loadSkills	Loaded 2 skills (2 valid, 0 invalid)
2026-03-19 07:20:45.335	DEBUG	/$bunfs/pochi:439288	PochiVendor	JWT is expiring or missing, fetching a new one
2026-03-19 07:20:47.034	DEBUG	/$bunfs/pochi:415701	MCPHub	MCP servers configuration changed via signal:
2026-03-19 07:20:47.034	DEBUG	/$bunfs/pochi:415813	MCPHub	Build MCPHub Status
2026-03-19 07:20:47.131	DEBUG	/$bunfs/pochi:502453	TaskRunner	Starting TaskRunner...
2026-03-19 07:20:47.228	DEBUG	/$bunfs/pochi:454195	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 07:20:47.416	DEBUG	/$bunfs/pochi:496495	generateTaskTitle	Generating task title, old: null, new: # Initialize a Jujutsu Repository and Configure User Identity
2026-03-19 07:20:56.379	DEBUG	/$bunfs/pochi:454195	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 07:20:59.246	WARN		GitStatus	readGitStatus timed out after 12000ms, returning undefined
2026-03-19 07:20:59.852	DEBUG	/$bunfs/pochi:496495	generateTaskTitle	Generating task title, old: # Initialize a Jujutsu Repository and Configure User Identity, new: Initialize a Jujutsu repository and configure global user identity
2026-03-19 07:21:00.350	DEBUG	/$bunfs/pochi:454195	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 07:21:02.972	DEBUG	/$bunfs/pochi:454195	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 07:21:08.426	WARN		GitStatus	readGitStatus timed out after 12000ms, returning undefined
2026-03-19 07:21:08.709	DEBUG	/$bunfs/pochi:454195	listFiles	Listing workspace files from /root with maxItems 500
2026-03-19 07:21:12.358	WARN		GitStatus	readGitStatus timed out after 12000ms, returning undefined
2026-03-19 07:21:15.034	WARN		GitStatus	readGitStatus timed out after 12000ms, returning undefined
2026-03-19 07:21:20.724	WARN		GitStatus	readGitStatus timed out after 12000ms, returning undefined
Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease
Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease
Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease
Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
curl is already the newest version (7.81.0-1ubuntu1.23).
0 upgraded, 0 newly installed, 0 to remove and 18 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 cpython-3.12.12-linux-x86_64-gnu (download) (31.1MiB)
 Downloading cpython-3.12.12-linux-x86_64-gnu (download)
Downloading pygments (1.2MiB)
 Downloading pygments
Installed 5 packages in 18ms
============================= test session starts ==============================
platform linux -- Python 3.12.12, pytest-8.4.1, pluggy-1.6.0 -- /root/.cache/uv/archive-v0/AzEnsIy6dB4OVOD6-A9pR/bin/python
cachedir: .pytest_cache
rootdir: /tests
collecting ... collected 8 items

../../tests/test_final_state.py::test_myproject_jj_directory_exists PASSED [ 12%]
../../tests/test_final_state.py::test_jj_status_succeeds PASSED          [ 25%]
../../tests/test_final_state.py::test_user_name_is_alex_developer FAILED [ 37%]
../../tests/test_final_state.py::test_user_email_is_alex_at_example FAILED [ 50%]
../../tests/test_final_state.py::test_user_name_is_user_level FAILED     [ 62%]
../../tests/test_final_state.py::test_user_email_is_user_level FAILED    [ 75%]
../../tests/test_final_state.py::test_readme_still_exists PASSED         [ 87%]
../../tests/test_final_state.py::test_readme_content_unchanged PASSED    [100%]

=================================== FAILURES ===================================
_______________________ test_user_name_is_alex_developer _______________________

    def test_user_name_is_alex_developer():
        result = run_jj(["config", "get", "user.name"], cwd=REPO_DIR)
        assert result.returncode == 0, (
            f"jj config get user.name failed: {result.stderr}"
        )
>       assert result.stdout.strip() == "Alex Developer", (
            f"user.name expected 'Alex Developer', got: '{result.stdout.strip()}'"
        )
E       AssertionError: user.name expected 'Alex Developer', got: ''
E       assert '' == 'Alex Developer'
E         
E         - Alex Developer

/tests/test_final_state.py:40: AssertionError
______________________ test_user_email_is_alex_at_example ______________________

    def test_user_email_is_alex_at_example():
        result = run_jj(["config", "get", "user.email"], cwd=REPO_DIR)
        assert result.returncode == 0, (
            f"jj config get user.email failed: {result.stderr}"
        )
>       assert result.stdout.strip() == "alex@example.com", (
            f"user.email expected 'alex@example.com', got: '{result.stdout.strip()}'"
        )
E       AssertionError: user.email expected 'alex@example.com', got: ''
E       assert '' == 'alex@example.com'
E         
E         - alex@example.com

/tests/test_final_state.py:50: AssertionError
_________________________ test_user_name_is_user_level _________________________

    def test_user_name_is_user_level():
        result = run_jj(["config", "list", "--user", "user.name"], cwd=REPO_DIR)
        assert result.returncode == 0, (
            f"jj config list --user user.name failed: {result.stderr}"
        )
>       assert "Alex Developer" in result.stdout, (
            f"user.name not found in user-level config. Output: '{result.stdout.strip()}'"
        )
E       AssertionError: user.name not found in user-level config. Output: ''
E       assert 'Alex Developer' in ''
E        +  where '' = CompletedProcess(args=['jj', 'config', 'list', '--user', 'user.name'], returncode=0, stdout='', stderr='Warning: No matching config key for user.name\n').stdout

/tests/test_final_state.py:60: AssertionError
________________________ test_user_email_is_user_level _________________________

    def test_user_email_is_user_level():
        result = run_jj(["config", "list", "--user", "user.email"], cwd=REPO_DIR)
        assert result.returncode == 0, (
            f"jj config list --user user.email failed: {result.stderr}"
        )
>       assert "alex@example.com" in result.stdout, (
            f"user.email not found in user-level config. Output: '{result.stdout.strip()}'"
        )
E       AssertionError: user.email not found in user-level config. Output: ''
E       assert 'alex@example.com' in ''
E        +  where '' = CompletedProcess(args=['jj', 'config', 'list', '--user', 'user.email'], returncode=0, stdout='', stderr='Warning: No matching config key for user.email\n').stdout

/tests/test_final_state.py:70: AssertionError
=========================== short test summary info ============================
FAILED ../../tests/test_final_state.py::test_user_name_is_alex_developer - As...
FAILED ../../tests/test_final_state.py::test_user_email_is_alex_at_example - ...
FAILED ../../tests/test_final_state.py::test_user_name_is_user_level - Assert...
FAILED ../../tests/test_final_state.py::test_user_email_is_user_level - Asser...
========================= 4 failed, 4 passed in 0.14s ==========================