Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 60b3835

Browse files
author
Lucas McDonald
committedApr 11, 2025·
m
1 parent 4b42e45 commit 60b3835

File tree

7 files changed

+27
-171
lines changed

7 files changed

+27
-171
lines changed
 

‎.github/workflows/daily_ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ jobs:
6666
uses: ./.github/workflows/ci_test_python.yml
6767
with:
6868
dafny: ${{needs.getVersion.outputs.version}}
69+
daily-ci-python-examples:
70+
needs: getVersion
71+
uses: ./.github/workflows/ci_examples_python.yml
72+
with:
73+
dafny: ${{needs.getVersion.outputs.version}}
6974
daily-ci-net-test-vectors:
7075
needs: getVersion
7176
uses: ./.github/workflows/ci_test_vector_net.yml

‎.github/workflows/manual.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,11 @@ jobs:
6262
with:
6363
dafny: ${{ inputs.dafny }}
6464
regenerate-code: ${{ inputs.regenerate-code }}
65+
manual-ci-python-examples:
66+
uses: ./.github/workflows/ci_examples_python.yml
67+
with:
68+
dafny: ${{ inputs.dafny }}
69+
regenerate-code: ${{ inputs.regenerate-code }}
6570
manual-ci-net-test-vectors:
6671
uses: ./.github/workflows/ci_test_vector_net.yml
6772
with:

‎.github/workflows/mpl-head.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,12 @@ jobs:
7979
with:
8080
dafny: ${{needs.getVersion.outputs.version}}
8181
mpl-head: true
82+
mpl-head-ci-python-examples:
83+
needs: getVersion
84+
uses: ./.github/workflows/ci_examples_python.yml
85+
with:
86+
dafny: ${{needs.getVersion.outputs.version}}
87+
mpl-head: true
8288
mpl-head-ci-net-test-vectors:
8389
needs: getVersion
8490
uses: ./.github/workflows/ci_test_vector_net.yml

‎.github/workflows/pull.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,11 @@ jobs:
6464
uses: ./.github/workflows/ci_test_vector_python.yml
6565
with:
6666
dafny: ${{needs.getVersion.outputs.version}}
67+
pr-ci-python-examples:
68+
needs: getVersion
69+
uses: ./.github/workflows/ci_examples_python.yml
70+
with:
71+
dafny: ${{needs.getVersion.outputs.version}}
6772
pr-ci-net-test-vectors:
6873
needs: getVersion
6974
uses: ./.github/workflows/ci_test_vector_net.yml

‎.github/workflows/push.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ jobs:
6161
uses: ./.github/workflows/ci_test_python.yml
6262
with:
6363
dafny: ${{needs.getVersion.outputs.version}}
64+
pr-ci-python-examples:
65+
needs: getVersion
66+
uses: ./.github/workflows/ci_examples_python.yml
67+
with:
68+
dafny: ${{needs.getVersion.outputs.version}}
6469
pr-ci-net-test-vectors:
6570
needs: getVersion
6671
uses: ./.github/workflows/ci_test_vector_net.yml

‎Examples/runtimes/python/DynamoDBEncryption/src/encrypted_client.py

Lines changed: 0 additions & 170 deletions
This file was deleted.

‎Examples/runtimes/python/DynamoDBEncryption/test/basic_put_get_example/test_with_encrypted_table.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ def test_encrypted_table_put_get_example():
1515
test_dynamodb_table_name = \
1616
"DynamoDbEncryptionInterceptorTestTable"
1717
encrypted_table_put_get_example(test_kms_key_id,
18-
test_dynamodb_table_name)
18+
test_dynamodb_table_name)

0 commit comments

Comments
 (0)