From 281b6977fd149c2ce43c183866eb187fa19d5f60 Mon Sep 17 00:00:00 2001 From: Benjamin Forehand Jr Date: Thu, 25 Apr 2024 10:59:23 -0500 Subject: [PATCH] [github-actions] updates based on new command line changes. --- .github/workflows/ios_manual.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ios_manual.yml b/.github/workflows/ios_manual.yml index e5dced2..8ab565c 100644 --- a/.github/workflows/ios_manual.yml +++ b/.github/workflows/ios_manual.yml @@ -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 @@ -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