Skip to content

Commit d0effc7

Browse files
authored
Revert "chore: use pypi dependency for durable executions python SDK (aws#8608)" (aws#8633)
This reverts commit fffd071. Co-authored-by: Chengjun Li <>
1 parent c89e2ec commit d0effc7

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

tests/integration/durable_integ_base.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@ def parameterized_test_name(func, num, params):
3737
@classmethod
3838
def build_durable_functions(cls):
3939
"""Run sam build for durable functions."""
40+
# Set environment variable for SDK .whl file location
41+
whl_path = Path(
42+
cls.test_data_path,
43+
"durable",
44+
"functions",
45+
"aws_durable_execution_sdk_python-1.0.0-py3-none-any.whl",
46+
)
47+
os.environ["DURABLE_SDK_WHL"] = str(whl_path.absolute())
48+
4049
cls.build_dir = Path(cls.test_data_path, "durable", ".aws-sam", "build")
4150
cls.built_template_path = cls.build_dir / "template.yaml"
4251

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
aws-durable-execution-sdk-python
1+
${DURABLE_SDK_WHL}

0 commit comments

Comments
 (0)