Skip to content

Commit e7e79f2

Browse files
committed
tests: pin sam cli version until 2024-JAN
Integ python tests are still failing with sam cli 1.97 (previous check was 1.95). 1) SAM Integration Tests SAM runtime: python 3.10 (ZIP) Starting with a newly created python 3.10 (ZIP) SAM Application... target=api: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614) 2) SAM Integration Tests SAM runtime: python 3.10 (ZIP) Starting with a newly created python 3.10 (ZIP) SAM Application... target=template: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614) 3) SAM Integration Tests SAM runtime: python 3.11 (ZIP) Starting with a newly created python 3.11 (ZIP) SAM Application... target=api: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614) 4) SAM Integration Tests SAM runtime: python 3.11 (ZIP) Starting with a newly created python 3.11 (ZIP) SAM Application... target=template: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614) 5) SAM Integration Tests SAM runtime: python 3.10 (ZIP) Starting with a newly created python 3.10 (ZIP) SAM Application... target=api: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614) 6) SAM Integration Tests SAM runtime: python 3.10 (ZIP) Starting with a newly created python 3.10 (ZIP) SAM Application... target=template: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614) 7) SAM Integration Tests SAM runtime: python 3.11 (ZIP) Starting with a newly created python 3.11 (ZIP) SAM Application... target=api: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614) 8) SAM Integration Tests SAM runtime: python 3.11 (ZIP) Starting with a newly created python 3.11 (ZIP) SAM Application... target=template: invokes and attaches on debug request (F5): Canceled Canceled at o.Q (vscode-file://vscode-app/codebuild/output/src3337557813/src/github.com/aws/aws-toolkit-vscode/.vscode-test/vscode-linux-x64-1.82.1/resources/app/out/vs/workbench/workbench.desktop.main.js:913:38614)
1 parent 409f1b7 commit e7e79f2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/test/techdebt.test.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,8 @@ describe('tech debt', function () {
4646
it('remove explicit sam cli version', function () {
4747
// Indicate to start using the latest aws-sam-cli version in our CI
4848
// https://issues.amazon.com/issues/IDE-11386
49-
const nextMonth = new Date(2023, 8, 12) // September 12th, 2023
50-
const now = new Date()
5149
assert(
52-
now < nextMonth,
50+
new Date() < new Date(2024, 1, 15),
5351
'Remove use of 1.94.0 for aws-sam-cli in linuxIntegrationTests.yml and see if integration tests are passing now'
5452
)
5553
})

0 commit comments

Comments
 (0)