@@ -37,11 +37,11 @@ jobs:
3737 run : python -m pip install hatch==1.16.5
3838
3939 - name : Setup and run tests
40- working-directory : language-sdk
40+ working-directory : language-sdk/packages/aws-durable-execution-sdk-python
4141 run : |
4242 echo "Running SDK tests..."
43- hatch run -- test:pip install -e ../testing-sdk
44- hatch run -- test:pip install -e ../language-sdk
43+ hatch run -- test:pip install -e ../../../ testing-sdk
44+ hatch run -- test:pip install -e .
4545 hatch fmt --check
4646 hatch run types:check
4747 hatch run test:cov
8484
8585 - name : Get integration examples
8686 id : get-examples
87- working-directory : language-sdk/examples
87+ working-directory : language-sdk/packages/aws-durable-execution-sdk-python/ examples
8888 run : |
8989 echo "examples=$(jq -c '.examples | map(select(.integration == true)) | .[0:2]' examples-catalog.json)" >> $GITHUB_OUTPUT
9090
@@ -97,15 +97,15 @@ jobs:
9797 rm -rf /tmp/aws/
9898
9999 - name : Deploy and test examples
100- working-directory : language-sdk
100+ working-directory : language-sdk/packages/aws-durable-execution-sdk-python
101101 env :
102102 AWS_ACCOUNT_ID : ${{ secrets.AWS_ACCOUNT_ID }}
103103 LAMBDA_ENDPOINT : " https://lambda.us-west-2.amazonaws.com"
104104 INVOKE_ACCOUNT_ID : ${{ secrets.INVOKE_ACCOUNT_ID }}
105105 KMS_KEY_ARN : ${{ secrets.KMS_KEY_ARN }}
106106 run : |
107107 echo "Building examples..."
108- hatch run -- examples:pip install -e ../testing-sdk
108+ hatch run -- examples:pip install -e ../../../ testing-sdk
109109 hatch run examples:build
110110
111111 # Get first integration example for testing
0 commit comments