--- Begin Message ---
Package: src:python-ewoksppf
Version: 1.2.0-1
Severity: serious
Tags: ftbfs forky sid
Dear maintainer:
During a rebuild of all packages in unstable, your package failed to build.
Below you will find how the build ends (probably the most relevant part,
but not necessarily). If required, the full build log is available here:
https://people.debian.org/~sanvila/build-logs/202509/
About the archive rebuild: The build was made on virtual machines from AWS,
using sbuild and a reduced chroot with only build-essential packages.
If you could not reproduce the bug please contact me privately, as I
am willing to provide ssh access to a virtual machine where the bug is
fully reproducible.
If this is really a bug in one of the build-depends, please use
reassign and add an affects on src:python-ewoksppf, so that this is still
visible in the BTS web page for this package.
Thanks.
--------------------------------------------------------------------------------
[...]
debian/rules clean
dh clean --buildsystem=pybuild
dh_auto_clean -O--buildsystem=pybuild
dh_autoreconf_clean -O--buildsystem=pybuild
dh_clean -O--buildsystem=pybuild
debian/rules binary
dh binary --buildsystem=pybuild
dh_update_autotools_config -O--buildsystem=pybuild
dh_autoreconf -O--buildsystem=pybuild
dh_auto_configure -O--buildsystem=pybuild
dh_auto_build -O--buildsystem=pybuild
I: pybuild plugin_pyproject:129: Building wheel for python3.13 with "build"
module
I: pybuild base:311: python3.13 -m build --skip-dependency-check --no-isolation
--wheel --outdir /<<PKGBUILDDIR>>/.pybuild/cpython3_3.13
* Building wheel...
/usr/lib/python3/dist-packages/setuptools/config/_apply_pyprojecttoml.py:82:
SetuptoolsDeprecationWarning: `project.license` as a TOML table is deprecated
!!
[... snipped ...]
succeeded = "task1", "task2", "task3"
assert result["_ppfdict"]["succeeded"] == succeeded
assert "WorkflowExceptionInstance" not in result["_ppfdict"]
inputs = [
{"name": "succeeded", "value": tuple()},
{"name": "raise_on_names", "value": ("task3",)},
]
result = execute_graph(workflow(), inputs=inputs, raise_on_error=False)
succeeded = "task1", "task2", "subtask1", "subtask2", "subtask3"
assert result["_ppfdict"]["succeeded"] == succeeded
errorMessage = str(result["_ppfdict"]["WorkflowExceptionInstance"])
> assert errorMessage == "Task 'task3' failed"
E assert 'Execution fa...n name: task3' == "Task 'task3' failed"
E
E - Task 'task3' failed
E + Execution failed for ewoks task 'task3' (id: 'task3', task:
'ewoksppf.tests.test_ppf_workflow24.task3'): raise on name: task3
ewoksppf/tests/test_ppf_workflow24.py:175: AssertionError
------------------------------ Captured log call -------------------------------
ERROR pypushflow:PythonActor.py:197 [workflow] [<EwoksPythonActor> task3]
Error in python actor 'task3'!
Not running down stream actors ['Stop']
Exception:Execution failed for ewoks task 'task3' (id: 'task3', task:
'ewoksppf.tests.test_ppf_workflow24.task3'): raise on name: task3
concurrent.futures.process._RemoteTraceback:
"""
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 612, in execute
self.run()
~~~~~~~~^^
File "/usr/lib/python3/dist-packages/ewokscore/ppftasks.py", line 36, in run
result = method(**method_kwargs)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow24.py",
line 21, in task3
return myfunc(name="task3", **kw)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow24.py",
line 7, in myfunc
raise RuntimeError(f"raise on name: {name}")
RuntimeError: raise on name: task3
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3.13/concurrent/futures/process.py", line 254, in
_process_worker
r = call_item.fn(*call_item.args, **call_item.kwargs)
File
"/usr/lib/python3/dist-packages/pypushflow/concurrent/interrupt/process.py",
line 14, in task_main
return fn(*args, **kwargs)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/ewoksppf/ppfrunscript.py", line
29, in run
task.execute()
~~~~~~~~~~~~^^
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 620, in execute
self._raise_task_error(
~~~~~~~~~~~~~~~~~~~~~~^
"Execution failed", str(e), RuntimeError, cause=e
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 573, in
_raise_task_error
raise exc_class(err_msg) from cause
RuntimeError: Execution failed for ewoks task 'task3' (id: 'task3', task:
'ewoksppf.tests.test_ppf_workflow24.task3'): raise on name: task3
"""
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/pypushflow/concurrent/process.py", line
78, in cb
result = future.result()
File "/usr/lib/python3.13/concurrent/futures/_base.py", line 449, in result
return self.__get_result()
~~~~~~~~~~~~~~~~~^^
File "/usr/lib/python3.13/concurrent/futures/_base.py", line 401, in
__get_result
raise self._exception
RuntimeError: Execution failed for ewoks task 'task3' (id: 'task3', task:
'ewoksppf.tests.test_ppf_workflow24.task3'): raise on name: task3
________________________________ test_workflow2 ________________________________
ppf_log_config = None
tmpdir = local('/tmp/pytest-of-buildd/pytest-0/test_workflow21')
def test_workflow2(ppf_log_config, tmpdir):
varinfo = {"root_uri": str(tmpdir)}
graph, expected = workflow2()
result = execute_graph(graph, varinfo=varinfo, raise_on_error=False)
assert_execute_graph_default_result(graph, result, expected,
varinfo=varinfo)
err_msg = "Task 'Python Error Handler Test' failed"
> assert str(result["WorkflowExceptionInstance"]) == err_msg
E assert 'Execution fa...ndlerTest.py!' == "Task 'Python... Test' failed"
E
E - Task 'Python Error Handler Test' failed
E + Execution failed for ewoks task 'Python Error Handler Test' (id:
'Python Error Handler Test', task:
'ewoksppf.tests.test_ppf_actors.pythonErrorHandlerTest.run'): Runtime error in
pythonErrorHandlerTest.py!
tests/test_ppf_workflow2.py:35: AssertionError
------------------------------ Captured log call -------------------------------
ERROR pypushflow:PythonActor.py:197 [workflow2] [<EwoksPythonActor> Python
Error Handler Test] Error in python actor 'Python Error Handler Test'!
Not running down stream actors ['Stop']
Exception:Execution failed for ewoks task 'Python Error Handler Test' (id:
'Python Error Handler Test', task:
'ewoksppf.tests.test_ppf_actors.pythonErrorHandlerTest.run'): Runtime error in
pythonErrorHandlerTest.py!
concurrent.futures.process._RemoteTraceback:
"""
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 612, in execute
self.run()
~~~~~~~~^^
File "/usr/lib/python3/dist-packages/ewokscore/ppftasks.py", line 36, in run
result = method(**method_kwargs)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_actors/pythonErrorHandlerTest.py",
line 4, in run
raise RuntimeError("Runtime error in pythonErrorHandlerTest.py!")
RuntimeError: Runtime error in pythonErrorHandlerTest.py!
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3.13/concurrent/futures/process.py", line 254, in
_process_worker
r = call_item.fn(*call_item.args, **call_item.kwargs)
File
"/usr/lib/python3/dist-packages/pypushflow/concurrent/interrupt/process.py",
line 14, in task_main
return fn(*args, **kwargs)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/ewoksppf/ppfrunscript.py", line
29, in run
task.execute()
~~~~~~~~~~~~^^
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 620, in execute
self._raise_task_error(
~~~~~~~~~~~~~~~~~~~~~~^
"Execution failed", str(e), RuntimeError, cause=e
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 573, in
_raise_task_error
raise exc_class(err_msg) from cause
RuntimeError: Execution failed for ewoks task 'Python Error Handler Test' (id:
'Python Error Handler Test', task:
'ewoksppf.tests.test_ppf_actors.pythonErrorHandlerTest.run'): Runtime error in
pythonErrorHandlerTest.py!
"""
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/pypushflow/concurrent/process.py", line
78, in cb
result = future.result()
File "/usr/lib/python3.13/concurrent/futures/_base.py", line 449, in result
return self.__get_result()
~~~~~~~~~~~~~~~~~^^
File "/usr/lib/python3.13/concurrent/futures/_base.py", line 401, in
__get_result
raise self._exception
RuntimeError: Execution failed for ewoks task 'Python Error Handler Test' (id:
'Python Error Handler Test', task:
'ewoksppf.tests.test_ppf_actors.pythonErrorHandlerTest.run'): Runtime error in
pythonErrorHandlerTest.py!
_____________________________ test_ppf_workflow24 ______________________________
ppf_log_config = None
def test_ppf_workflow24(ppf_log_config):
"""test default error handlers"""
inputs = [
{"name": "succeeded", "value": tuple()},
{"name": "raise_on_names", "value": tuple()},
]
result = execute_graph(workflow(), inputs=inputs, raise_on_error=False)
succeeded = "task1", "task2", "task3"
assert result["_ppfdict"]["succeeded"] == succeeded
assert "WorkflowExceptionInstance" not in result["_ppfdict"]
inputs = [
{"name": "succeeded", "value": tuple()},
{"name": "raise_on_names", "value": ("task3",)},
]
result = execute_graph(workflow(), inputs=inputs, raise_on_error=False)
succeeded = "task1", "task2", "subtask1", "subtask2", "subtask3"
assert result["_ppfdict"]["succeeded"] == succeeded
errorMessage = str(result["_ppfdict"]["WorkflowExceptionInstance"])
> assert errorMessage == "Task 'task3' failed"
E assert 'Execution fa...n name: task3' == "Task 'task3' failed"
E
E - Task 'task3' failed
E + Execution failed for ewoks task 'task3' (id: 'task3', task:
'tests.test_ppf_workflow24.task3'): raise on name: task3
tests/test_ppf_workflow24.py:175: AssertionError
------------------------------ Captured log call -------------------------------
ERROR pypushflow:PythonActor.py:197 [workflow] [<EwoksPythonActor> task3]
Error in python actor 'task3'!
Not running down stream actors ['Stop']
Exception:Execution failed for ewoks task 'task3' (id: 'task3', task:
'tests.test_ppf_workflow24.task3'): raise on name: task3
concurrent.futures.process._RemoteTraceback:
"""
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 612, in execute
self.run()
~~~~~~~~^^
File "/usr/lib/python3/dist-packages/ewokscore/ppftasks.py", line 36, in run
result = method(**method_kwargs)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_ppf_workflow24.py",
line 21, in task3
return myfunc(name="task3", **kw)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/tests/test_ppf_workflow24.py",
line 7, in myfunc
raise RuntimeError(f"raise on name: {name}")
RuntimeError: raise on name: task3
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3.13/concurrent/futures/process.py", line 254, in
_process_worker
r = call_item.fn(*call_item.args, **call_item.kwargs)
File
"/usr/lib/python3/dist-packages/pypushflow/concurrent/interrupt/process.py",
line 14, in task_main
return fn(*args, **kwargs)
File
"/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build/ewoksppf/ppfrunscript.py", line
29, in run
task.execute()
~~~~~~~~~~~~^^
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 620, in execute
self._raise_task_error(
~~~~~~~~~~~~~~~~~~~~~~^
"Execution failed", str(e), RuntimeError, cause=e
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/usr/lib/python3/dist-packages/ewokscore/task.py", line 573, in
_raise_task_error
raise exc_class(err_msg) from cause
RuntimeError: Execution failed for ewoks task 'task3' (id: 'task3', task:
'tests.test_ppf_workflow24.task3'): raise on name: task3
"""
The above exception was the direct cause of the following exception:
Traceback (most recent call last):
File "/usr/lib/python3/dist-packages/pypushflow/concurrent/process.py", line
78, in cb
result = future.result()
File "/usr/lib/python3.13/concurrent/futures/_base.py", line 449, in result
return self.__get_result()
~~~~~~~~~~~~~~~~~^^
File "/usr/lib/python3.13/concurrent/futures/_base.py", line 401, in
__get_result
raise self._exception
RuntimeError: Execution failed for ewoks task 'task3' (id: 'task3', task:
'tests.test_ppf_workflow24.task3'): raise on name: task3
=============================== warnings summary ===============================
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_examples.py: 102 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_end.py: 8 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow10.py: 34 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow11.py: 9 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow12.py: 5 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow13.py: 9 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow14.py: 7 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow15.py: 9 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow16.py: 9 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow17.py: 8 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow18.py: 5 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow19.py: 8 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow20.py: 2 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow21.py: 24 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow22.py: 6 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow24.py: 7 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow3.py: 2 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow6.py: 5 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow7.py: 2 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow8.py: 2 warnings
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_ppf_workflow9.py: 1 warning
.pybuild/cpython3_3.13/build/ewoksppf/tests/test_workflow_events.py: 3 warnings
.pybuild/cpython3_3.13/build/tests/test_examples.py: 102 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_end.py: 8 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow10.py: 34 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow11.py: 9 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow12.py: 5 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow13.py: 9 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow14.py: 7 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow15.py: 9 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow16.py: 9 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow17.py: 8 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow18.py: 5 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow19.py: 8 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow20.py: 2 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow21.py: 24 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow22.py: 6 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow24.py: 7 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow3.py: 2 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow6.py: 5 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow7.py: 2 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow8.py: 2 warnings
.pybuild/cpython3_3.13/build/tests/test_ppf_workflow9.py: 1 warning
.pybuild/cpython3_3.13/build/tests/test_workflow_events.py: 3 warnings
/usr/lib/python3.13/multiprocessing/popen_fork.py:67: DeprecationWarning:
This process (pid=13297) is multi-threaded, use of fork() may lead to deadlocks
in the child.
self.pid = os.fork()
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
=========================== short test summary info ============================
FAILED ewoksppf/tests/test_ppf_workflow2.py::test_workflow2 - assert 'Executi...
FAILED ewoksppf/tests/test_ppf_workflow24.py::test_ppf_workflow24 - assert 'E...
FAILED tests/test_ppf_workflow2.py::test_workflow2 - assert 'Execution fa...n...
FAILED tests/test_ppf_workflow24.py::test_ppf_workflow24 - assert 'Execution ...
============ 4 failed, 98 passed, 8 skipped, 534 warnings in 7.79s =============
E: pybuild pybuild:389: test: plugin pyproject failed with: exit code=1: cd
/<<PKGBUILDDIR>>/.pybuild/cpython3_3.13/build; python3.13 -m pytest
dh_auto_test: error: pybuild --test --test-pytest -i python{version} -p 3.13
returned exit code 13
make: *** [debian/rules:4: binary] Error 25
dpkg-buildpackage: error: debian/rules binary subprocess returned exit status 2
--------------------------------------------------------------------------------
--- End Message ---