diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7b1d34f3..8cfb5de9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,10 +126,6 @@ jobs: xcodebuild -exportArchive -archivePath $RUNNER_TEMP/MqttClient.xcarchive -exportOptionsPlist ExportOptions.plist -exportPath output cd output ls - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: '3.7' - name: Setup Device Farm test file and environment # Device Farm Instructions: https://docs.aws.amazon.com/devicefarm/latest/developerguide/test-types-appium.html run: | @@ -140,7 +136,7 @@ jobs: virtualenv workspace cd workspace source bin/activate - # pip install -r ../DeviceFarmScript/requirements.txt + pip install -r ../DeviceFarmScript/requirements.txt # Create a test bundle folder for upload mkdir tests cp ../DeviceFarmScript/mqtt_ios_test.py tests/ diff --git a/Test/IntegrationTests/MqttClient/DeviceFarmScript/requirements.txt b/Test/IntegrationTests/MqttClient/DeviceFarmScript/requirements.txt index e69de29b..94af0927 100644 --- a/Test/IntegrationTests/MqttClient/DeviceFarmScript/requirements.txt +++ b/Test/IntegrationTests/MqttClient/DeviceFarmScript/requirements.txt @@ -0,0 +1,7 @@ +Appium-Python-Client~=2.9.0 +pytest~=7.4.3 +boto3~=1.28.1 +requests~=2.24.0 +PyYAML~=6.0.1 +pytest-html~=4.0.0 +selenium~=4.11.2