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

Testing locally‐built images

James Mortensen edited this page Jan 28, 2024 · 1 revision

Before running tests on the CI server, we can test images locally to make sure complicated merges from upstream have been successful:

cd tests
SKIP_BUILD=true NAMESPACE=seleniarm VERSION=4.16.1-20231230 sh bootstrap.sh NodeChromium
SKIP_BUILD=true NAMESPACE=seleniarm VERSION=4.16.1-20231230 sh bootstrap.sh NodeFirefox
SKIP_BUILD=true NAMESPACE=seleniarm VERSION=4.16.1-20231230 sh bootstrap.sh StandaloneChromium
SKIP_BUILD=true NAMESPACE=seleniarm VERSION=4.16.1-20231230 sh bootstrap.sh StandaloneFirefox

SKIP_BUILD - The tests in the docker-seleniarm repository cannot rebuild the images, so we skip this step. NAMESPACE - Default is selenium, so we replace with seleniarm.

Clone this wiki locally