-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathupload.sh
24 lines (22 loc) · 1.09 KB
/
upload.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
appcenter test run appium --app <app_name> \
--devices <device_id/device_name> \
--app-path <path_to_app_file> \
--test-series "master" \
--locale "en_US" \
--build-dir target/upload \
--test-parameter "test_env=KATALON_VERSION=<katalon_version>" \
--test-parameter "test_env=KATALON_PROJECT_PACKAGE_FILE=<katalon_project_package_file>" \
--test-parameter "test_env=KATALON_PROJECT_PATH=<katalon_project_path>" \
--test-parameter "test_env=KATALON_EXECUTE_ARGS=<katalon_execute_args>"
# appcenter test run appium
# --app "katalon/Sideload" \
# --devices "katalon/nexus" \
# --app-path "apps/APIDemos.apk" \
# --test-series "master" \
# --locale "en_US" \
# --build-dir target/upload \
# --test-parameter "test_env=KATALON_VERSION=" \
# --test-parameter "test_env=KATALON_PROJECT_PACKAGE_FILE=KatalonDemoProject.zip" \
# --test-parameter "test_env=KATALON_PROJECT_PATH=" \
# --test-parameter "test_env=KATALON_EXECUTE_ARGS=-retry=0 -testSuitePath=""Test Suites/Regression Tests"" -executionProfile=default -browserType=Chrome -apiKey=""12345678-aaaa-bbbb-cccc-91011121314"""