pygame-sdl2: 8.3.5.25022704 -> 8.3.7.25031702; renpy: 8.3.6.25022803 -> 8.3.7.25031702#391742
Merged
7c6f434c merged 2 commits intoNixOS:masterfrom Mar 22, 2025
Merged
pygame-sdl2: 8.3.5.25022704 -> 8.3.7.25031702; renpy: 8.3.6.25022803 -> 8.3.7.25031702#3917427c6f434c merged 2 commits intoNixOS:masterfrom
7c6f434c merged 2 commits intoNixOS:masterfrom
Conversation
Contributor
Author
|
It doesn't like python3Full anymore? execnetpython3.12-execnet> ==================================== ERRORS ====================================
python3.12-execnet> _ ERROR at setup of TestMultiChannelAndGateway.test_multichannel_container_basics[thread-socket] _
python3.12-execnet> request = <SubRequest 'gw' for <Function test_multichannel_container_basics[thread-socket]>>
python3.12-execnet> execmodel = <ExecModel 'thread'>, group = <Group ['popen', 'sproxy1']>
python3.12-execnet> @pytest.fixture
python3.12-execnet> def gw(
python3.12-execnet> request: pytest.FixtureRequest,
python3.12-execnet> execmodel: ExecModel,
python3.12-execnet> group: execnet.Group,
python3.12-execnet> ) -> Gateway:
python3.12-execnet> try:
python3.12-execnet> > return group[request.param]
python3.12-execnet> testing/conftest.py:151:
python3.12-execnet> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
python3.12-execnet> self = <Group ['popen', 'sproxy1']>, key = 'socket'
python3.12-execnet> def __getitem__(self, key: int | str | Gateway) -> Gateway:
python3.12-execnet> if isinstance(key, int):
python3.12-execnet> return self._gateways[key]
python3.12-execnet> for gw in self._gateways:
python3.12-execnet> if gw == key or gw.id == key:
python3.12-execnet> return gw
python3.12-execnet> > raise KeyError(key)
python3.12-execnet> E KeyError: 'socket'
python3.12-execnet> /nix/store/wlj74qyhp67plskwp0pv0v0b2g90rg6v-python3.12-execnet-2.1.1/lib/python3.12/site-packages/execnet/multi.py:102: KeyError
python3.12-execnet> During handling of the above exception, another exception occurred:
python3.12-execnet> request = <SubRequest 'gw' for <Function test_multichannel_container_basics[thread-socket]>>
python3.12-execnet> execmodel = <ExecModel 'thread'>, group = <Group ['popen', 'sproxy1']>
python3.12-execnet> @pytest.fixture
python3.12-execnet> def gw(
python3.12-execnet> request: pytest.FixtureRequest,
python3.12-execnet> execmodel: ExecModel,
python3.12-execnet> group: execnet.Group,
python3.12-execnet> ) -> Gateway:
python3.12-execnet> try:
python3.12-execnet> return group[request.param]
python3.12-execnet> except KeyError:
python3.12-execnet> if request.param == "popen":
python3.12-execnet> gw = group.makegateway("popen//id=popen//execmodel=%s" % execmodel.backend)
python3.12-execnet> elif request.param == "socket":
python3.12-execnet> # if execmodel.backend != "thread":
python3.12-execnet> # pytest.xfail(
python3.12-execnet> # "cannot set remote non-thread execmodel for sockets")
python3.12-execnet> pname = "sproxy1"
python3.12-execnet> if pname not in group:
python3.12-execnet> proxygw = group.makegateway("popen//id=%s" % pname)
python3.12-execnet> # assert group['proxygw'].remote_status().receiving
python3.12-execnet> > gw = group.makegateway(
python3.12-execnet> f"socket//id=socket//installvia={pname}"
python3.12-execnet> f"//execmodel={execmodel.backend}"
python3.12-execnet> )
python3.12-execnet> testing/conftest.py:163:
python3.12-execnet> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
python3.12-execnet> /nix/store/wlj74qyhp67plskwp0pv0v0b2g90rg6v-python3.12-execnet-2.1.1/lib/python3.12/site-packages/execnet/multi.py:158: in makegateway
python3.12-execnet> sio = gateway_socket.create_io(spec, self, execmodel=self.execmodel)
python3.12-execnet> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
python3.12-execnet> spec = <XSpec 'socket//id=socket//installvia=sproxy1//execmodel=thread'>
python3.12-execnet> group = <Group ['popen', 'sproxy1']>, execmodel = <ExecModel 'thread'>
python3.12-execnet> def create_io(spec: XSpec, group: Group, execmodel: ExecModel) -> SocketIO:
python3.12-execnet> assert spec.socket is not None
python3.12-execnet> assert not spec.python, "socket: specifying python executables not yet supported"
python3.12-execnet> gateway_id = spec.installvia
python3.12-execnet> if gateway_id:
python3.12-execnet> host, port = start_via(group[gateway_id])
python3.12-execnet> else:
python3.12-execnet> host, port_str = spec.socket.split(":")
python3.12-execnet> port = int(port_str)
python3.12-execnet> socket = execmodel.socket
python3.12-execnet> sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
python3.12-execnet> io = SocketIO(sock, execmodel)
python3.12-execnet> io.remoteaddress = "%s:%d" % (host, port)
python3.12-execnet> try:
python3.12-execnet> > sock.connect((host, port))
python3.12-execnet> E PermissionError: [Errno 1] Operation not permitted
python3.12-execnet> /nix/store/wlj74qyhp67plskwp0pv0v0b2g90rg6v-python3.12-execnet-2.1.1/lib/python3.12/site-packages/execnet/gateway_socket.py:99: PermissionError
python3.12-execnet> _ ERROR at setup of TestMultiChannelAndGateway.test_multichannel_container_basics[main_thread_only-socket] _
python3.12-execnet> request = <SubRequest 'gw' for <Function test_multichannel_container_basics[main_thread_only-socket]>>
python3.12-execnet> execmodel = <ExecModel 'main_thread_only'>
python3.12-execnet> group = <Group ['popen', 'sproxy1', 'proxy-transport', 'proxy', 'socket']>
python3.12-execnet> @pytest.fixture
python3.12-execnet> def gw(
python3.12-execnet> request: pytest.FixtureRequest,
python3.12-execnet> execmodel: ExecModel,
python3.12-execnet> group: execnet.Group,
python3.12-execnet> ) -> Gateway:
python3.12-execnet> try:
python3.12-execnet> > return group[request.param]
python3.12-execnet> testing/conftest.py:151:
python3.12-execnet> _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
python3.12-execnet> self = <Group ['popen', 'sproxy1', 'proxy-transport', 'proxy', 'socket']>
python3.12-execnet> key = 'socket'
python3.12-execnet> def __getitem__(self, key: int | str | Gateway) -> Gateway:
python3.12-execnet> if isinstance(key, int):
python3.12-execnet> return self._gateways[key]
python3.12-execnet> for gw in self._gateways:
python3.12-execnet> if gw == key or gw.id == key:
python3.12-execnet> return gw
python3.12-execnet> > raise KeyError(key)
python3.12-execnet> E KeyError: 'socket'
python3.12-execnet> /nix/store/wlj74qyhp67plskwp0pv0v0b2g90rg6v-python3.12-execnet-2.1.1/lib/python3.12/site-packages/execnet/multi.py:102: KeyError
python3.12-execnet> During handling of the above exception, another exception occurred:
python3.12-execnet> request = <SubRequest 'gw' for <Function test_multichannel_container_basics[main_thread_only-socket]>>
python3.12-execnet> execmodel = <ExecModel 'main_thread_only'>
python3.12-execnet> group = <Group ['popen', 'sproxy1', 'proxy-transport', 'proxy', 'socket']>
python3.12-execnet> @pytest.fixture
python3.12-execnet> def gw(
python3.12-execnet> request: pytest.FixtureRequest,
python3.12-execnet> execmodel: ExecModel,
python3.12-execnet> group: execnet.Group,
python3.12-execnet> ) -> Gateway:
python3.12-execnet> try:
python3.12-execnet> return group[request.param]
python3.12-execnet> except KeyError:
python3.12-execnet> if request.param == "popen":
python3.12-execnet> gw = group.makegateway("popen//id=popen//execmodel=%s" % execmodel.backend)
python3.12-execnet> elif request.param == "socket":
python3.12-execnet> # if execmodel.backend != "thread":
python3.12-execnet> # pytest.xfail(
python3.12-execnet> # "cannot set remote non-thread execmodel for sockets")
python3.12-execnet> pname = "sproxy1"
python3.12-execnet> if pname not in group:
python3.12-execnet> proxygw = group.makegateway("popen//id=%s" % pname)
python3.12-execnet> # assert group['proxygw'].remote_status().receiving
python3.12-execnet> gw = group.makegateway(
python3.12-execnet> f"socket//id=socket//installvia={pname}"
python3.12-execnet> f"//execmodel={execmodel.backend}"
python3.12-execnet> )
python3.12-execnet> # TODO(typing): Clarify this assignment.
python3.12-execnet> > gw.proxygw = proxygw # type: ignore[attr-defined]
python3.12-execnet> E UnboundLocalError: cannot access local variable 'proxygw' where it is not associated with a value
python3.12-execnet> testing/conftest.py:168: UnboundLocalError
python3.12-execnet> =============================== warnings summary ===============================
python3.12-execnet> ../../../../nix/store/ivab6j6npky0qrqpc8gdp49alpzs2d3k-python3.12-pytest-8.3.4/lib/python3.12/site-packages/_pytest/config/__init__.py:1441
python3.12-execnet> /nix/store/ivab6j6npky0qrqpc8gdp49alpzs2d3k-python3.12-pytest-8.3.4/lib/python3.12/site-packages/_pytest/config/__init__.py:1441: PytestConfigWarning: Unknown config option: timeout
python3.12-execnet> self._warn_or_fail_if_strict(f"Unknown config option: {key}\n")xdistpython3.12-pytest-xdist> =================================== FAILURES ===================================
python3.12-pytest-xdist> _____________ TestNodeFailure.test_max_worker_restart_tests_queued _____________
python3.12-pytest-xdist> [gw3] linux -- Python 3.12.9 /nix/store/bzdqkdyfj397606mal63mlk0s15p4xqf-python3-3.12.9/bin/python3.12
python3.12-pytest-xdist> self = <acceptance_test.TestNodeFailure object at 0xfffff4b0f950>
python3.12-pytest-xdist> pytester = <Pytester PosixPath('/build/pytest-of-nixbld/pytest-0/popen-gw3/test_max_worker_restart_tests_queued0')>
python3.12-pytest-xdist> def test_max_worker_restart_tests_queued(self, pytester: pytest.Pytester) -> None:
python3.12-pytest-xdist> f = pytester.makepyfile(
python3.12-pytest-xdist> """
python3.12-pytest-xdist> import os, pytest
python3.12-pytest-xdist> @pytest.mark.parametrize('i', range(10))
python3.12-pytest-xdist> def test(i): os._exit(1)
python3.12-pytest-xdist> """
python3.12-pytest-xdist> )
python3.12-pytest-xdist> res = pytester.runpytest(f, "-n2", "--max-worker-restart=3")
python3.12-pytest-xdist> > res.stdout.fnmatch_lines(
python3.12-pytest-xdist> [
python3.12-pytest-xdist> "replacing crashed worker*",
python3.12-pytest-xdist> "maximum crashed workers reached: 3*",
python3.12-pytest-xdist> "worker*crashed while running*",
python3.12-pytest-xdist> "worker*crashed while running*",
python3.12-pytest-xdist> "* xdist: maximum crashed workers reached: 3 *",
python3.12-pytest-xdist> "* 4 failed in *",
python3.12-pytest-xdist> ]
python3.12-pytest-xdist> )
python3.12-pytest-xdist> E Failed: nomatch: 'replacing crashed worker*'
python3.12-pytest-xdist> E and: '============================= test session starts =============================='
python3.12-pytest-xdist> E and: 'platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0'
python3.12-pytest-xdist> E and: 'rootdir: /build/pytest-of-nixbld/pytest-0/popen-gw3/test_max_worker_restart_tests_queued0'
python3.12-pytest-xdist> E and: 'plugins: xdist-3.6.1'
python3.12-pytest-xdist> E and: 'created: 2/2 workers'
python3.12-pytest-xdist> E and: '2 workers [10 items]'
python3.12-pytest-xdist> E and: ''
python3.12-pytest-xdist> E and: '[gw1] node down: Not properly terminated'
python3.12-pytest-xdist> E and: 'F'
python3.12-pytest-xdist> E fnmatch: 'replacing crashed worker*'
python3.12-pytest-xdist> E with: 'replacing crashed worker gw1'
python3.12-pytest-xdist> E nomatch: 'maximum crashed workers reached: 3*'
python3.12-pytest-xdist> E and: '[gw0] node down: Not properly terminated'
python3.12-pytest-xdist> E and: 'F'
python3.12-pytest-xdist> E and: 'replacing crashed worker gw0'
python3.12-pytest-xdist> E and: '[gw2] node down: Not properly terminated'
python3.12-pytest-xdist> E and: 'F'
python3.12-pytest-xdist> E and: 'replacing crashed worker gw2'
python3.12-pytest-xdist> E and: '[gw4] node down: Not properly terminated'
python3.12-pytest-xdist> E and: 'F'
python3.12-pytest-xdist> E fnmatch: 'maximum crashed workers reached: 3*'
python3.12-pytest-xdist> E with: 'maximum crashed workers reached: 3'
python3.12-pytest-xdist> E nomatch: 'worker*crashed while running*'
python3.12-pytest-xdist> E and: '[gw3] node down: Not properly terminated'
python3.12-pytest-xdist> E and: 'F'
python3.12-pytest-xdist> E and: 'maximum crashed workers reached: 3'
python3.12-pytest-xdist> E and: ' [ 50%]'
python3.12-pytest-xdist> E and: '=================================== FAILURES ==================================='
python3.12-pytest-xdist> E and: '___________________ test_max_worker_restart_tests_queued.py ____________________'
python3.12-pytest-xdist> E and: '[gw1] linux -- Python 3.12.9 /nix/store/bzdqkdyfj397606mal63mlk0s15p4xqf-python3-3.12.9/bin/python3.12'
python3.12-pytest-xdist> E fnmatch: 'worker*crashed while running*'
python3.12-pytest-xdist> E with: "worker 'gw1' crashed while running 'test_max_worker_restart_tests_queued.py::test[2]'"
python3.12-pytest-xdist> E nomatch: 'worker*crashed while running*'
python3.12-pytest-xdist> E and: '___________________ test_max_worker_restart_tests_queued.py ____________________'
python3.12-pytest-xdist> E and: '[gw0] linux -- Python 3.12.9 /nix/store/bzdqkdyfj397606mal63mlk0s15p4xqf-python3-3.12.9/bin/python3.12'
python3.12-pytest-xdist> E fnmatch: 'worker*crashed while running*'
python3.12-pytest-xdist> E with: "worker 'gw0' crashed while running 'test_max_worker_restart_tests_queued.py::test[0]'"
python3.12-pytest-xdist> E nomatch: '* xdist: maximum crashed workers reached: 3 *'
python3.12-pytest-xdist> E and: '___________________ test_max_worker_restart_tests_queued.py ____________________'
python3.12-pytest-xdist> E and: '[gw2] linux -- Python 3.12.9 /nix/store/bzdqkdyfj397606mal63mlk0s15p4xqf-python3-3.12.9/bin/python3.12'
python3.12-pytest-xdist> E and: "worker 'gw2' crashed while running 'test_max_worker_restart_tests_queued.py::test[4]'"
python3.12-pytest-xdist> E and: '___________________ test_max_worker_restart_tests_queued.py ____________________'
python3.12-pytest-xdist> E and: '[gw4] linux -- Python 3.12.9 /nix/store/bzdqkdyfj397606mal63mlk0s15p4xqf-python3-3.12.9/bin/python3.12'
python3.12-pytest-xdist> E and: "worker 'gw4' crashed while running 'test_max_worker_restart_tests_queued.py::test[3]'"
python3.12-pytest-xdist> E and: '___________________ test_max_worker_restart_tests_queued.py ____________________'
python3.12-pytest-xdist> E and: '[gw3] linux -- Python 3.12.9 /nix/store/bzdqkdyfj397606mal63mlk0s15p4xqf-python3-3.12.9/bin/python3.12'
python3.12-pytest-xdist> E and: "worker 'gw3' crashed while running 'test_max_worker_restart_tests_queued.py::test[8]'"
python3.12-pytest-xdist> E fnmatch: '* xdist: maximum crashed workers reached: 3 *'
python3.12-pytest-xdist> E with: '================== xdist: maximum crashed workers reached: 3 ==================='
python3.12-pytest-xdist> E nomatch: '* 4 failed in *'
python3.12-pytest-xdist> E and: '=========================== short test summary info ============================'
python3.12-pytest-xdist> E and: 'FAILED test_max_worker_restart_tests_queued.py::test[2]'
python3.12-pytest-xdist> E and: 'FAILED test_max_worker_restart_tests_queued.py::test[0]'
python3.12-pytest-xdist> E and: 'FAILED test_max_worker_restart_tests_queued.py::test[4]'
python3.12-pytest-xdist> E and: 'FAILED test_max_worker_restart_tests_queued.py::test[3]'
python3.12-pytest-xdist> E and: 'FAILED test_max_worker_restart_tests_queued.py::test[8]'
python3.12-pytest-xdist> E and: '============================== 5 failed in 1.27s ==============================='
python3.12-pytest-xdist> E remains unmatched: '* 4 failed in *'
python3.12-pytest-xdist> /build/pytest_xdist-3.6.1/testing/acceptance_test.py:1007: Failed
python3.12-pytest-xdist> ----------------------------- Captured stdout call -----------------------------
python3.12-pytest-xdist> ============================= test session starts ==============================
python3.12-pytest-xdist> platform linux -- Python 3.12.9, pytest-8.3.4, pluggy-1.5.0
python3.12-pytest-xdist> rootdir: /build/pytest-of-nixbld/pytest-0/popen-gw3/test_max_worker_restart_tests_queued0
python3.12-pytest-xdist> plugins: xdist-3.6.1
python3.12-pytest-xdist> created: 2/2 workers
python3.12-pytest-xdist> 2 workers [10 items]
python3.12-pytest-xdist> [gw1] node down: Not properly terminated
python3.12-pytest-xdist> F
python3.12-pytest-xdist> replacing crashed worker gw1
python3.12-pytest-xdist> [gw0] node down: Not properly terminated
python3.12-pytest-xdist> F
python3.12-pytest-xdist> replacing crashed worker gw0
python3.12-pytest-xdist> [gw2] node down: Not properly terminated
python3.12-pytest-xdist> F
python3.12-pytest-xdist> replacing crashed worker gw2
python3.12-pytest-xdist> [gw4] node down: Not properly terminated
python3.12-pytest-xdist> F
python3.12-pytest-xdist> maximum crashed workers reached: 3 |
Contributor
Author
|
Changing to python3 simple did the trick.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.

Things done
nix.conf? (See Nix manual)sandbox = relaxedsandbox = truenix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD". Note: all changes have to be committed, also see nixpkgs-review usage./result/bin/)Add a 👍 reaction to pull requests you find important.