Skip to content
This repository has been archived by the owner on Oct 25, 2024. It is now read-only.

Atp v3 #35

Merged
merged 6 commits into from
Oct 31, 2023
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
94 changes: 48 additions & 46 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.9"
arcaflow-plugin-sdk = "^0.11.0"
arcaflow-plugin-sdk = "~0.13.0"

[tool.poetry.dev-dependencies]
coverage = "^7.0.0"
Expand Down
4 changes: 2 additions & 2 deletions tests/test_arcaflow_plugin_wait.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ def test_functional(self):
seconds=WAIT_TIME
)
wait_step = arcaflow_plugin_wait.WaitStep()
output_id, output_data = wait_step.wait(input_params)
output_id, output_data = wait_step.wait(self.id(), input_params)

self.assertEqual("success", output_id)
self.assertEqual(
Expand All @@ -57,7 +57,7 @@ def test_functional(self):
wait_step = arcaflow_plugin_wait.WaitStep()
wait_step.cancel_step(wait_step, predefined_schemas.cancelInput())
start_time = time.time()
output_id, output_data = wait_step.wait(input_params)
output_id, output_data = wait_step.wait(self.id(), input_params)
run_duration = time.time() - start_time
# It starts in a cancelled state, so it should be plenty less than
# the full wait time.
Expand Down