Skip to content

Commit b6eacd4

Browse files
committed
Use Node and Python environment for smoke test CI
1 parent b79fa78 commit b6eacd4

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.circleci/config.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ jobs:
182182
183183
browser-compat-smoke-tests:
184184
docker:
185-
- image: cimg/node:16.1.0
185+
- image: cimg/python:3.9.4-node
186186
steps:
187187
- checkout
188188
- run:
@@ -299,10 +299,10 @@ workflows:
299299
- main
300300
- release
301301
- /^release-.*/
302-
- check-size:
303-
context: data-eng-gleanjs-gh
304-
requires:
305-
- hold
302+
# - check-size:
303+
# context: data-eng-gleanjs-gh
304+
# requires:
305+
# - hold
306306
- browser-compat-smoke-tests:
307307
context: data-eng-gleanjs-gh
308308
requires:

benchmarks/compat/tests/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export async function runWebTest(driver) {
5454
// Loading the sample webpage will record a metric and submit a ping.
5555
// If the ping is submitted succesfully an element in the DOM with the id `msg`
5656
// will receive the text "Ping submitted succesfully."
57-
await driver.get(`http://localasdfhost:${PORT}/`);
57+
await driver.get(`http://localhost:${PORT}/`);
5858
// Give it time to send the ping request.
5959
const successTextContainer = await driver.findElement(By.id("msg"));
6060
await driver.wait(

0 commit comments

Comments
 (0)