From 00ec0562d86ea13278a2357e83d432c03368b585 Mon Sep 17 00:00:00 2001 From: HellAholic Date: Tue, 28 Apr 2026 12:18:41 +0200 Subject: [PATCH 1/2] Only send the required inputs --- .github/workflows/unit-test-post.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/unit-test-post.yml b/.github/workflows/unit-test-post.yml index c40cff5dd..1e5a8fd5f 100644 --- a/.github/workflows/unit-test-post.yml +++ b/.github/workflows/unit-test-post.yml @@ -9,5 +9,8 @@ jobs: publish-test-results: uses: ultimaker/cura-workflows/.github/workflows/unit-test-post.yml@main with: - workflow_run_json: ${{ toJSON(github.event.workflow_run) }} + workflow_run_conclusion: ${{ github.event.workflow_run.conclusion }} + workflow_run_id: ${{ github.event.workflow_run.id }} + workflow_run_head_sha: ${{ github.event.workflow_run.head_sha }} + workflow_run_event: ${{ github.event.workflow_run.event }} secrets: inherit From fe528d3df06a90208c4fbb68dd4860f1f2d06964 Mon Sep 17 00:00:00 2001 From: HellAholic Date: Tue, 28 Apr 2026 16:12:47 +0200 Subject: [PATCH 2/2] Update conftest.py The (path: py.path.local) argument is deprecated, please use (collection_path: pathlib.Path) see https://docs.pytest.org/en/latest/deprecations.html#py-path-local-arguments-for-hooks-replaced-with-pathlib-path --- tests/benchmarks/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/benchmarks/conftest.py b/tests/benchmarks/conftest.py index 6fc1c9ebd..845708d96 100644 --- a/tests/benchmarks/conftest.py +++ b/tests/benchmarks/conftest.py @@ -7,7 +7,7 @@ warn = True @pytest.hookimpl -def pytest_ignore_collect(path, config): +def pytest_ignore_collect(collection_path, config): if config.pluginmanager.hasplugin("pytest-benchmark"): return False else: