You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'Runs end to end tests on iOS device'
3
+
inputs:
4
+
test_name:
5
+
description: 'Test case/suite name. Will run all tests in the test plan if not provided.'
6
+
required: false
7
+
test_device_udid:
8
+
description: 'Test Device UDID'
9
+
required: true
10
+
outputs_path:
11
+
description: 'Path to where outputs are stored - both build outputs and outputs from running tests. This should be unique for each job run in order to avoid concurrency issues.'
12
+
required: true
13
+
14
+
runs:
15
+
using: 'composite'
16
+
steps:
17
+
# Set up a unique output directory
18
+
- name: Set up outputs directory
19
+
run: |
20
+
if [ -n "$TEST_NAME" ]; then
21
+
# Strip slashes to avoid creating subdirectories
22
+
test_name_sanitized=$(printf "$TEST_NAME" | sed 's/\//_/g')
0 commit comments