From 9b03c10c6876061033d902a332a92659db66e01d Mon Sep 17 00:00:00 2001 From: BAK BYEONG JUN Date: Sat, 12 Apr 2025 08:09:52 +0000 Subject: [PATCH] init --- tasks/pytest-playwright/task.yaml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tasks/pytest-playwright/task.yaml b/tasks/pytest-playwright/task.yaml index f4a92dc..c1aefb4 100644 --- a/tasks/pytest-playwright/task.yaml +++ b/tasks/pytest-playwright/task.yaml @@ -9,10 +9,10 @@ spec: description: Subdirectory within the workspace where the tests are located default: "" - - name: playwright-python-version + - name: playwright-python-image type: string - description: Python version to use (e.g., v1.42.0-jammy) - default: "v1.42.0-jammy" + description: Playwright Python image + default: "mcr.microsoft.com/playwright/python:v1.42.0-jammy" - name: pypi-username type: string @@ -38,7 +38,7 @@ spec: steps: - name: install-dependencies - image: mcr.microsoft.com/playwright/python:$(playwright-python-version) + image: $(params.playwright-python-image) workingDir: /workspace/source script: | #!/usr/bin/env bash @@ -104,3 +104,4 @@ spec: fi exit $TEST_EXIT_CODE + \ No newline at end of file