Skip to content

Commit 34b1119

Browse files
Updating CI Python images (#1507)
1 parent 8a4873d commit 34b1119

File tree

3 files changed

+11
-10
lines changed

3 files changed

+11
-10
lines changed

.circleci/config.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
artifacts:
1515
docker:
16-
- image: circleci/python:3.7.6-stretch-node-browsers
16+
- image: circleci/python:3.7.9-stretch-node-browsers
1717
auth:
1818
username: dashautomation
1919
password: $DASH_PAT_DOCKERHUB
@@ -33,7 +33,7 @@ jobs:
3333
lint-unit-37: &lint-unit
3434
working_directory: ~/dash
3535
docker:
36-
- image: circleci/python:3.7.6-stretch-node-browsers
36+
- image: circleci/python:3.7.9-stretch-node-browsers
3737
auth:
3838
username: dashautomation
3939
password: $DASH_PAT_DOCKERHUB
@@ -73,7 +73,7 @@ jobs:
7373
lint-unit-36:
7474
<<: *lint-unit
7575
docker:
76-
- image: circleci/python:3.6.9-stretch-node-browsers
76+
- image: circleci/python:3.6.12-stretch-node-browsers
7777
auth:
7878
username: dashautomation
7979
password: $DASH_PAT_DOCKERHUB
@@ -95,7 +95,7 @@ jobs:
9595
build-core-37: &build-core
9696
working_directory: ~/dash
9797
docker:
98-
- image: circleci/python:3.7.6-stretch-node-browsers
98+
- image: circleci/python:3.7.9-stretch-node-browsers
9999
auth:
100100
username: dashautomation
101101
password: $DASH_PAT_DOCKERHUB
@@ -133,7 +133,7 @@ jobs:
133133
build-core-36:
134134
<<: *build-core
135135
docker:
136-
- image: circleci/python:3.6.9-stretch-node-browsers
136+
- image: circleci/python:3.6.12-stretch-node-browsers
137137
auth:
138138
username: dashautomation
139139
password: $DASH_PAT_DOCKERHUB
@@ -153,7 +153,7 @@ jobs:
153153
build-misc-37: &build-misc
154154
working_directory: ~/dash
155155
docker:
156-
- image: circleci/python:3.7.6-stretch-node-browsers
156+
- image: circleci/python:3.7.9-stretch-node-browsers
157157
auth:
158158
username: dashautomation
159159
password: $DASH_PAT_DOCKERHUB
@@ -192,7 +192,7 @@ jobs:
192192
build-misc-36:
193193
<<: *build-misc
194194
docker:
195-
- image: circleci/python:3.6.9-stretch-node-browsers
195+
- image: circleci/python:3.6.12-stretch-node-browsers
196196
auth:
197197
username: dashautomation
198198
password: $DASH_PAT_DOCKERHUB
@@ -341,7 +341,7 @@ jobs:
341341
test-37: &test
342342
working_directory: ~/dash
343343
docker:
344-
- image: circleci/python:3.7.6-stretch-node-browsers
344+
- image: circleci/python:3.7.9-stretch-node-browsers
345345
auth:
346346
username: dashautomation
347347
password: $DASH_PAT_DOCKERHUB
@@ -386,7 +386,7 @@ jobs:
386386
test-36:
387387
<<: *test
388388
docker:
389-
- image: circleci/python:3.6.9-stretch-node-browsers
389+
- image: circleci/python:3.6.12-stretch-node-browsers
390390
auth:
391391
username: dashautomation
392392
password: $DASH_PAT_DOCKERHUB

dash/testing/browser.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@ def _get_chrome(self):
431431

432432
capabilities = DesiredCapabilities.CHROME
433433
capabilities["loggingPrefs"] = {"browser": "SEVERE"}
434+
capabilities["goog:loggingPrefs"] = {"browser": "SEVERE"}
434435

435436
if "DASH_TEST_CHROMEPATH" in os.environ:
436437
options.binary_location = os.environ["DASH_TEST_CHROMEPATH"]

tests/integration/renderer/test_iframe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ def apply_cors(response):
5757
dash_duo.wait_for_element_by_id("btn").click()
5858
dash_duo.wait_for_element("#output-0").text == "0=1"
5959

60-
assert len(dash_duo.get_logs()) != 0
60+
assert dash_duo.get_logs() == []

0 commit comments

Comments
 (0)