Skip to content

Commit

Permalink
fix test error
Browse files Browse the repository at this point in the history
Signed-off-by: Godot Bian <[email protected]>
  • Loading branch information
godobyte committed Nov 29, 2024
1 parent 0f9c3ff commit bb788a1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def set_step_script(self, manifests, s3_settings) -> None:
self._step_script = StepScript_2023_09(
actions=StepActions_2023_09(
onRun=Action_2023_09(
command=python_path,
command=str(python_path),
args=args,
)
),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def set_step_script(self, manifests, s3_settings) -> None:
self._step_script = StepScript_2023_09(
actions=StepActions_2023_09(
onRun=Action_2023_09(
command=python_path,
command=str(python_path),
args=args,
)
),
Expand Down
4 changes: 0 additions & 4 deletions test/unit/sessions/actions/test_run_attachment_download.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,10 +111,6 @@ def mock_asset_sync(self, session: Mock) -> Generator[MagicMock, None, None]:
with patch.object(session, "_asset_sync") as mock_asset_sync:
yield mock_asset_sync

@pytest.mark.skipif(
sys.platform == "win32",
reason="Failed in windows due to embeddedFiles.data quotation mark, which will be replaced by python embedded file soon.",
)
def test_attachment_download_action_start(
self,
executor: Mock,
Expand Down

0 comments on commit bb788a1

Please sign in to comment.