nixbot

builds
1tribuchet: building on eliza2Sourcing python-remove-tests-dir-hook3Sourcing python-catch-conflicts-hook.sh4Sourcing python-remove-bin-bytecode-hook.sh5Sourcing pypa-build-hook6Using pypaBuildPhase7Sourcing python-runtime-deps-check-hook8Using pythonRuntimeDepsCheckHook9Sourcing pypa-install-hook10Using pypaInstallPhase11Sourcing python-imports-check-hook.sh12Using pythonImportsCheckPhase13Sourcing python-namespaces-hook14Sourcing python-catch-conflicts-hook.sh15Sourcing pytest-check-hook16Using pytestCheckPhase
unpackPhase
17unpacking source archive /nix/store/7gllbm0c52hxhk9z7k4wzgavslmz6g6z-nix-eval-warnings18source root is nix-eval-warnings19setting SOURCE_DATE_EPOCH to timestamp 315619200 of file "nix-eval-warnings/tests/test_nix_eval_warnings.py"
configurePhase
20no configure script, doing nothing
buildPhase
21Executing pypaBuildPhase22Creating a wheel...23pypa build flags: --no-isolation --outdir dist/ --wheel24* Getting build dependencies for wheel...25* Building wheel...26Successfully built nix_eval_warnings-0.1.0-py3-none-any.whl27Finished creating a wheel...28Finished executing pypaBuildPhase
pythonRuntimeDepsCheckHook
29Executing pythonRuntimeDepsCheck30Checking runtime dependencies for nix_eval_warnings-0.1.0-py3-none-any.whl31Finished executing pythonRuntimeDepsCheck
installPhase
32Executing pypaInstallPhase33Successfully installed nix_eval_warnings-0.1.0-py3-none-any.whl34Finished executing pypaInstallPhase
pythonOutputDistPhase
35Executing pythonOutputDistPhase36Finished executing pythonOutputDistPhase
fixupPhase
37shrinking RPATHs of ELF executables and libraries in /nix/store/b74r8v3xmp1h2z91z5hdy6syp0yy94jd-nix-eval-warnings-0.1.038checking for references to /build/ in /nix/store/b74r8v3xmp1h2z91z5hdy6syp0yy94jd-nix-eval-warnings-0.1.0...39patching script interpreter paths in /nix/store/b74r8v3xmp1h2z91z5hdy6syp0yy94jd-nix-eval-warnings-0.1.040stripping (with command strip and flags -S -p) in /nix/store/b74r8v3xmp1h2z91z5hdy6syp0yy94jd-nix-eval-warnings-0.1.0/lib /nix/store/b74r8v3xmp1h2z91z5hdy6syp0yy94jd-nix-eval-warnings-0.1.0/bin41shrinking RPATHs of ELF executables and libraries in /nix/store/bxlfjlqsdqxax832pmnw4n2g5shc3cg2-nix-eval-warnings-0.1.0-dist42checking for references to /build/ in /nix/store/bxlfjlqsdqxax832pmnw4n2g5shc3cg2-nix-eval-warnings-0.1.0-dist...43patching script interpreter paths in /nix/store/bxlfjlqsdqxax832pmnw4n2g5shc3cg2-nix-eval-warnings-0.1.0-dist44Rewriting #!/nix/store/3inr3nxzqarhb9rh1z7s2s20j8c0395h-python3-3.14.7/bin/python3.14 to #!/nix/store/3inr3nxzqarhb9rh1z7s2s20j8c0395h-python3-3.14.745wrapping `/nix/store/b74r8v3xmp1h2z91z5hdy6syp0yy94jd-nix-eval-warnings-0.1.0/bin/nix-eval-warnings'...46Executing pythonRemoveTestsDir47Finished executing pythonRemoveTestsDir
installCheckPhase
48no Makefile or custom installCheckPhase, doing nothing
pythonImportsCheckPhase
49Executing pythonImportsCheckPhase
pytestCheckPhase
50Executing pytestCheckPhase51pytest flags: -m pytest52============================= test session starts ==============================53platform linux -- Python 3.14.7, pytest-9.1.1, pluggy-1.6.054rootdir: /build/nix-eval-warnings55configfile: pyproject.toml56collected 12 items5758tests/test_nix_eval_warnings.py ..F......... [100%]5960=================================== FAILURES ===================================61____ TestNixEvalWarningsIntegration.test_source_location_has_file_and_line _____6263self = <tests.test_nix_eval_warnings.TestNixEvalWarningsIntegration testMethod=test_source_location_has_file_and_line>6465 def test_source_location_has_file_and_line(self) -> None:66 """Test that source file and line number are extracted."""67 for w in self.warnings:68> assert "flake.nix:" in w.source, (69 f"Expected 'flake.nix:' in source, got: {w.source}"70 )71E AssertionError: Expected 'flake.nix:' in source, got: 72E assert 'flake.nix:' in ''73E + where '' = EvalWarning(attr='x86_64-linux.uses-input', warning_type='warning from subflake', source='', option_path='').source7475tests/test_nix_eval_warnings.py:169: AssertionError76=========================== short test summary info ============================77FAILED tests/test_nix_eval_warnings.py::TestNixEvalWarningsIntegration::test_source_location_has_file_and_line78========================= 1 failed, 11 passed in 0.34s =========================