Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/unit-test-post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion tests/benchmarks/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
warn = True

@pytest.hookimpl
def pytest_ignore_collect(path, config):
def pytest_ignore_collect(collection_path, config):
Comment thread
wawanbreton marked this conversation as resolved.
if config.pluginmanager.hasplugin("pytest-benchmark"):
return False
else:
Expand Down
Loading