-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathrun-tests.sh
More file actions
executable file
·52 lines (40 loc) · 1.43 KB
/
run-tests.sh
File metadata and controls
executable file
·52 lines (40 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/bin/bash
echo "==> Setup ADB port reverse..."
adb reverse --remove-all
adb reverse tcp:13000 tcp:13000
## Cloud testrun dependencies start
echo "Extracting tests.zip..."
unzip tests.zip
echo "Installing pip requirements"
chmod 0755 requirements.txt
apt-get --assume-yes install python3.10
python3.10 --version
python3.10 -m pip install --upgrade pip
python3.10 -m pip install wheel
python3.10 -m pip install -r requirements.txt
python3.10 -m pip list
## Appium server launch
echo "Starting Appium ..."
appium --log-no-colors --log-timestamp --command-timeout 60 > appium.log 2>&1 &
ps -ef|grep appium
export LICENSE_KEY=$(cat license.txt)
Install and launch AltTester Desktop
brew install wget
wget https://alttester.com/app/uploads/AltTester/desktop/AltTesterDesktopLinuxBatchmode.zip
unzip AltTesterDesktopLinuxBatchmode.zip
cd AltTesterDesktopLinux
## Start AltTester Desktop from batchmode
echo "Starting AltTester Desktop ..."
chmod +x ./AltTesterDesktop.x86_64
./AltTesterDesktop.x86_64 -batchmode -port 13000 -license $LICENSE_KEY -nographics -termsAndConditionsAccepted &
cd ..
## Run the test:
echo "Running tests"
rm -rf screenshots
python3.10 -m pytest -s tests/ --junitxml=test-reports/report.xml
mv test-reports/*.xml TEST-all.xml
echo "Deactivate AltTesterDesktop license"
cd AltTesterDesktopLinux
kill -2 `ps -ef | awk '/AltTesterDesktop.x86_64/{print $2}'`
sleep 10
./AltTesterDesktop.x86_64 -batchmode -nographics -removeActivation