Skip to content

[SDK-3372]: Connect UI tests to the remote AltTester server #38

[SDK-3372]: Connect UI tests to the remote AltTester server

[SDK-3372]: Connect UI tests to the remote AltTester server #38

Workflow file for this run

---
name: UI Tests 🧪
on:
push:
branches: [main]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build sample game for AltTester 🛠️
runs-on: windows-2022
steps:
- uses: actions/checkout@v3
with:
lfs: true
- uses: actions/cache@v3
with:
path: Library
key: Library-${{ hashFiles('sample/Assets/**', 'sample/Packages/**', 'sample/ProjectSettings/**') }}
restore-keys: |
Library-
- name: Build project
uses: game-ci/unity-builder@v4
env:
UNITY_EMAIL: ${{ secrets.UNITY_EMAIL }}
UNITY_PASSWORD: ${{ secrets.UNITY_PASSWORD }}
UNITY_SERIAL: ${{ secrets.UNITY_SERIAL }}
ALTSERVER_HOST: 54.66.58.33
ALTSERVER_PORT: 13000
with:
targetPlatform: StandaloneWindows64
projectPath: sample
buildMethod: WindowsBuilder.BuildForAltTester
customParameters: -logFile logFile.log -quit -batchmode
- name: Upload artifact
uses: actions/upload-artifact@v4
if: always()
with:
name: Build-StandaloneWindows64
path: sample/**
- name: Open application
run: |
pwd
ls -la
export RUN_IN_BROWSERSTACK="false"
export ALTSERVER_HOST="54.66.58.33"
export ALTSERVER_PORT=13000
chmod -R 755 SampleApp.app
open SampleApp.app
- uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: pip install -r "sample/Tests/requirements.txt"
- name: Run UI tests
run: |
pwd
ls -la
export ALTSERVER_HOST="54.66.58.33"
export ALTSERVER_PORT=13000
pytest -s -v sample/Tests/test.py
# test:
# name: Run UI tests on AltTester 🧪
# runs-on: macos-latest
# needs: build
# steps:
# - uses: actions/checkout@v3
# with:
# lfs: true
# - uses: actions/download-artifact@v4
# with:
# name: Build-StandaloneWindows64
# - name: Open application
# run: |
# pwd
# ls -la
# export RUN_IN_BROWSERSTACK="false"
# export ALTSERVER_HOST="54.66.58.33"
# export ALTSERVER_PORT=13000
# chmod -R 755 SampleApp.app
# open SampleApp.app
# - uses: actions/setup-python@v4
# with:
# python-version: "3.10"
# - name: Install dependencies
# run: pip install -r "sample/Tests/requirements.txt"
# - name: Run UI tests
# run: |
# export ALTSERVER_HOST="54.66.58.33"
# export ALTSERVER_PORT=13000
# pytest -s -v sample/Tests/test.py