Skip to content

Commit e8902d9

Browse files
authored
Upgrade ubuntu focal 20210401 (#1259) [deploy][prerelease]
* Upgrading to focal-20210401 * Fix typo in readme * Disabling testing Edge as dev is unstable
1 parent 69dd08b commit e8902d9

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

Base/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ubuntu:focal-20201106
1+
FROM ubuntu:focal-20210401
22
LABEL authors="Selenium <[email protected]>"
33

44
#================================================

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -371,14 +371,16 @@ release: tag_major_minor
371371
# video: this should be moved to release_latest when Selenium 4 is released
372372

373373
test: test_chrome \
374-
test_edge \
375374
test_firefox \
376375
test_opera \
377376
test_chrome_standalone \
378-
test_edge_standalone \
379377
test_firefox_standalone \
380378
test_opera_standalone
381379

380+
# Disabling Edge testing for this release as Dev seems unstable
381+
# test_edge \
382+
# test_edge_standalone \
383+
382384

383385
test_chrome:
384386
VERSION=$(TAG_VERSION) NAMESPACE=$(NAMESPACE) ./tests/bootstrap.sh NodeChrome

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@ This project uses [noVNC](https://github.com/novnc/noVNC) to allow users inspect
636636
their browser. This might come handy if you cannot install a VNC client on your machine. Port 7900 is used to start
637637
noVNC, so you will need to connect to that port with your browser.
638638

639-
Similarly to the previous section, feel free to map port 5900 to any free external port that you wish.
639+
Similarly to the previous section, feel free to map port 7900 to any free external port that you wish.
640640

641641
Here is an example with the standalone images, the same concept applies to the node images.
642642
``` bash

tests/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ def launch_container(container, **kwargs):
175175
prune_networks()
176176
create_network("grid")
177177
hub_id = launch_hub("grid")
178-
ports = {'5555': 5555}
178+
ports = {'5555': 5555, '7900': 7900}
179179
if use_random_user_id:
180180
test_container_id = launch_container(image, network='grid', ports=ports, user=random_user_id)
181181
else:

0 commit comments

Comments
 (0)