mirror of
https://github.com/johndoe6345789/AutoMetabuilder.git
synced 2026-04-30 08:45:00 +00:00
8 lines
215 B
Python
8 lines
215 B
Python
"""Workflow plugin: run tests."""
|
|
|
|
|
|
def run(runtime, inputs):
|
|
"""Run tests via tool runner."""
|
|
result = runtime.tool_runner.call("run_tests", path=inputs.get("path", "tests"))
|
|
return {"results": result}
|