File tree Expand file tree Collapse file tree 4 files changed +10
-10
lines changed
buildSrc/src/software/aws/toolkits/gradle
testdata/samProjects/image/python2.7/hello_world
ui-tests/tst/software/aws/toolkits/jetbrains/uitests/fixtures Expand file tree Collapse file tree 4 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -74,21 +74,21 @@ object IdeVersions {
74
74
" java" ,
75
75
" com.intellij.gradle" ,
76
76
" org.jetbrains.idea.maven" ,
77
- " PythonCore:211.6085.26 " ,
78
- " Docker:211.6085.26 "
77
+ " PythonCore:211.6305.22 " ,
78
+ " Docker:211.6305.15 "
79
79
),
80
80
ultimatePlugins = listOf (
81
81
" JavaScript" ,
82
82
// Transitive dependency needed for javascript
83
83
" com.intellij.css" ,
84
84
" JavaScriptDebugger" ,
85
85
" com.intellij.database" ,
86
- " Pythonid:211.6085.26 "
86
+ " Pythonid:211.6305.22 "
87
87
),
88
88
riderSdkOverride = " 2021.1-SNAPSHOT" ,
89
- ijSdkOverride = " 211.6085 -EAP-CANDIDATE-SNAPSHOT" ,
90
- rdGenVersion = " 0.211.214 " ,
91
- nugetVersion = " 2021.1.0-eap03 "
89
+ ijSdkOverride = " 211.6305 -EAP-CANDIDATE-SNAPSHOT" ,
90
+ rdGenVersion = " 0.211.234 " ,
91
+ nugetVersion = " 2021.1.0-eap06 "
92
92
)
93
93
).associateBy { it.name }
94
94
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ phases:
26
26
- apt-get update
27
27
- apt-get install -y jq python2.7 python3.6 python3.7 python3.8 python3-pip python3-distutils
28
28
# As of Ubuntu 20.4, there is no longer pip for Python 2, so we need to install it manually
29
- - curl https://bootstrap.pypa.io/2.7/get-pip.py --output get-pip.py
29
+ - curl https://bootstrap.pypa.io/pip/ 2.7/get-pip.py --output get-pip.py
30
30
- python2 get-pip.py
31
31
- aws sts assume-role --role-arn $ASSUME_ROLE_ARN --role-session-name integ-test > creds.json
32
32
- export KEY_ID=`jq -r '.Credentials.AccessKeyId' creds.json`
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ FROM public.ecr.aws/lambda/python:2.7
2
2
3
3
COPY app.py requirements.txt ./
4
4
5
- RUN curl https://bootstrap.pypa.io/2.7/get-pip.py -o get-pip.py
5
+ RUN curl https://bootstrap.pypa.io/pip/ 2.7/get-pip.py -o get-pip.py
6
6
7
7
RUN python2.7 get-pip.py
8
8
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ fun IdeaFrame.awsExplorer(
16
16
timeout : Duration = Duration .ofSeconds(20),
17
17
function : AwsExplorer .() -> Unit
18
18
) {
19
- val locator = byXpath(" //div[@accessiblename='AWS Explorer Tool Window' and @class='InternalDecorator' ]" )
19
+ val locator = byXpath(" //div[@accessiblename='AWS Explorer Tool Window']" )
20
20
21
21
step(" AWS explorer" ) {
22
22
val explorer = try {
@@ -25,7 +25,7 @@ fun IdeaFrame.awsExplorer(
25
25
step(" Open tool window" ) {
26
26
// Click the tool window stripe
27
27
find(ComponentFixture ::class .java, byXpath(" //div[@accessiblename='AWS Explorer' and @class='StripeButton' and @text='AWS Explorer']" )).click()
28
- find< AwsExplorer > (locator, timeout)
28
+ find(locator, timeout)
29
29
}
30
30
}
31
31
You can’t perform that action at this time.
0 commit comments