Skip to content

Commit

Permalink
[github-actions] updates based on new command line changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
b4handjr authored Apr 25, 2024
1 parent b5cf16e commit 281b697
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/ios_manual.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ on:
default: "123"
required: false
type: string
feature-name:
description: 'The Feature you want to test'
default: 'smoke'
required: true
type: string
jobs:
iOS-klaatu-tests:
runs-on: macos-14-xlarge
Expand Down Expand Up @@ -73,7 +78,7 @@ jobs:
pipenv install
export SIMULATOR_UDID=$(python get_specific_device_udid.py)
echo "RUNNING TESTS"
EXPERIMENT_NAME="${{ inputs.user-facing-name }}" pipenv run pytest --experiment ${{ inputs.slug }} -k test_generic.py
EXPERIMENT_NAME="${{ inputs.user-facing-name }}" pipenv run pytest --experiment ${{ inputs.slug }} --experiment-branch ${{ inputs.branch }} --feature ${{ inputs.feature-name }}
- name: Archive Results
if: ${{ always() }}
run: zip -r results.zip /Users/runner/Library/Developer/Xcode/DerivedData/**/Logs/Test/*.xcresult
Expand Down

0 comments on commit 281b697

Please sign in to comment.