test: remove duplicate code executor integration coverage (#38947)

This commit is contained in:
Asuka Minato 2026-07-15 12:03:30 +09:00 committed by GitHub
parent 0f0fb1ca3d
commit bf2654eff6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +0,0 @@
import pytest
from core.helper.code_executor.code_executor import CodeExecutionError, CodeExecutor
CODE_LANGUAGE = "unsupported_language"
def test_unsupported_with_code_template():
with pytest.raises(CodeExecutionError) as e:
CodeExecutor.execute_workflow_code_template(language=CODE_LANGUAGE, code="", inputs={})
assert str(e.value) == f"Unsupported language {CODE_LANGUAGE}"