Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 6aa850d

Browse files
authored
Merge pull request #910 from plotly/sanity-browser-capabilities
Updating CI Python images
2 parents cf26048 + a66dc5e commit 6aa850d

File tree

2 files changed

+13
-21
lines changed

2 files changed

+13
-21
lines changed

Diff for: .circleci/config.yml

+12-12
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
lint-unit-37: &lint-unit
1313
working_directory: ~/project
1414
docker:
15-
- image: circleci/python:3.7.6-stretch-node-browsers
15+
- image: circleci/python:3.7.9-stretch-node-browsers
1616
auth:
1717
username: dashautomation
1818
password: $DASH_PAT_DOCKERHUB
@@ -50,7 +50,7 @@ jobs:
5050
lint-unit-36:
5151
<<: *lint-unit
5252
docker:
53-
- image: circleci/python:3.6.9-stretch-node-browsers
53+
- image: circleci/python:3.6.12-stretch-node-browsers
5454
auth:
5555
username: dashautomation
5656
password: $DASH_PAT_DOCKERHUB
@@ -60,7 +60,7 @@ jobs:
6060
lint-unit-27:
6161
<<: *lint-unit
6262
docker:
63-
- image: circleci/python:2.7-stretch-node-browsers
63+
- image: circleci/python:2.7.18-stretch-node-browsers
6464
auth:
6565
username: dashautomation
6666
password: $DASH_PAT_DOCKERHUB
@@ -70,7 +70,7 @@ jobs:
7070
build-dash-37: &build-dash
7171
working_directory: ~/project
7272
docker:
73-
- image: circleci/python:3.7.6-stretch-node-browsers
73+
- image: circleci/python:3.7.9-stretch-node-browsers
7474
auth:
7575
username: dashautomation
7676
password: $DASH_PAT_DOCKERHUB
@@ -116,7 +116,7 @@ jobs:
116116
build-dash-36:
117117
<<: *build-dash
118118
docker:
119-
- image: circleci/python:3.6.9-stretch-node-browsers
119+
- image: circleci/python:3.6.12-stretch-node-browsers
120120
auth:
121121
username: dashautomation
122122
password: $DASH_PAT_DOCKERHUB
@@ -126,7 +126,7 @@ jobs:
126126
build-dash-27:
127127
<<: *build-dash
128128
docker:
129-
- image: circleci/python:2.7-stretch-node-browsers
129+
- image: circleci/python:2.7.18-stretch-node-browsers
130130
auth:
131131
username: dashautomation
132132
password: $DASH_PAT_DOCKERHUB
@@ -136,7 +136,7 @@ jobs:
136136
test-37: &test
137137
working_directory: ~/project
138138
docker:
139-
- image: circleci/python:3.7.6-stretch-node-browsers
139+
- image: circleci/python:3.7.9-stretch-node-browsers
140140
auth:
141141
username: dashautomation
142142
password: $DASH_PAT_DOCKERHUB
@@ -172,7 +172,7 @@ jobs:
172172
test-36:
173173
<<: *test
174174
docker:
175-
- image: circleci/python:3.6.9-stretch-node-browsers
175+
- image: circleci/python:3.6.12-stretch-node-browsers
176176
auth:
177177
username: dashautomation
178178
password: $DASH_PAT_DOCKERHUB
@@ -183,7 +183,7 @@ jobs:
183183
test-27:
184184
<<: *test
185185
docker:
186-
- image: circleci/python:2.7-stretch-node-browsers
186+
- image: circleci/python:2.7.18-stretch-node-browsers
187187
auth:
188188
username: dashautomation
189189
password: $DASH_PAT_DOCKERHUB
@@ -194,7 +194,7 @@ jobs:
194194
test-legacy-37: &test-legacy
195195
working_directory: ~/project
196196
docker:
197-
- image: circleci/python:3.7.6-stretch-node-browsers
197+
- image: circleci/python:3.7.9-stretch-node-browsers
198198
auth:
199199
username: dashautomation
200200
password: $DASH_PAT_DOCKERHUB
@@ -231,7 +231,7 @@ jobs:
231231
test-legacy-36:
232232
<<: *test-legacy
233233
docker:
234-
- image: circleci/python:3.6.9-stretch-node-browsers
234+
- image: circleci/python:3.6.12-stretch-node-browsers
235235
auth:
236236
username: dashautomation
237237
password: $DASH_PAT_DOCKERHUB
@@ -241,7 +241,7 @@ jobs:
241241
test-legacy-27:
242242
<<: *test-legacy
243243
docker:
244-
- image: circleci/python:2.7-stretch-node-browsers
244+
- image: circleci/python:2.7.18-stretch-node-browsers
245245
auth:
246246
username: dashautomation
247247
password: $DASH_PAT_DOCKERHUB

Diff for: tests/integration/input/test_number_input.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,8 @@
55

66
def test_inni001_invalid_numbers(ninput_app, dash_dcc):
77
dash_dcc.start_server(ninput_app)
8-
for invalid_number in (
9-
"10e10000",
10-
"e+++eeeeeE-",
11-
"120.2.33",
12-
"12-.3",
13-
"-3.3.3",
14-
"0..0",
15-
):
8+
for invalid_number in ("10e10000", "e+++eeeeeE-", "12-.3"):
169
for debounce in ("false", "true"):
17-
1810
elem = dash_dcc.find_element("#input_{}".format(debounce))
1911
assert not elem.get_attribute("value"), "input should have no initial value"
2012

0 commit comments

Comments
 (0)