This commit is contained in:
병준 박 2025-04-12 08:09:52 +00:00
parent c9e377ce24
commit 9b03c10c68

View File

@ -9,10 +9,10 @@ spec:
description: Subdirectory within the workspace where the tests are located description: Subdirectory within the workspace where the tests are located
default: "" default: ""
- name: playwright-python-version - name: playwright-python-image
type: string type: string
description: Python version to use (e.g., v1.42.0-jammy) description: Playwright Python image
default: "v1.42.0-jammy" default: "mcr.microsoft.com/playwright/python:v1.42.0-jammy"
- name: pypi-username - name: pypi-username
type: string type: string
@ -38,7 +38,7 @@ spec:
steps: steps:
- name: install-dependencies - name: install-dependencies
image: mcr.microsoft.com/playwright/python:$(playwright-python-version) image: $(params.playwright-python-image)
workingDir: /workspace/source workingDir: /workspace/source
script: | script: |
#!/usr/bin/env bash #!/usr/bin/env bash
@ -104,3 +104,4 @@ spec:
fi fi
exit $TEST_EXIT_CODE exit $TEST_EXIT_CODE