* let's disable autocorrection * waiting some more time in flaky tests and updated the content of a test that was failing * controlled delay waited a bit moe for the timeline to settle * try await * trying with a bit more waiting time after the tap and a slow velocity for the swipe * let's try waiting more time * workflow for a single ui test * las try * slow swiping tests * commenting out flaky CI tests, for now we'll just disable them * better description * flaky test improvement * disabling animations that are not needed in UITests * code that already prevents animations in UI tests * code improv
61 lines
1.8 KiB
YAML
61 lines
1.8 KiB
YAML
name: UI Tests
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
test_name:
|
|
description: 'If a test name is provided, only that test will be run. Otherwise, all tests will be run. Use the format "ClassName/testName" to run a single test.'
|
|
required: false
|
|
|
|
schedule:
|
|
- cron: '0 0 * * 1-5'
|
|
|
|
jobs:
|
|
tests:
|
|
name: Tests
|
|
runs-on: macos-13
|
|
|
|
concurrency:
|
|
# When running on develop, use the sha to allow all runs of this workflow to run concurrently.
|
|
# Otherwise only allow a single run of this workflow on each branch, automatically cancelling older runs.
|
|
group: ${{ github.ref == 'refs/heads/develop' && format('ui-tests-develop-{0}', github.sha) || format('ui-tests-{0}', github.ref) }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
lfs: true
|
|
|
|
- uses: actions/cache@v3
|
|
with:
|
|
path: vendor/bundle
|
|
key: ${{ runner.os }}-gems-${{ hashFiles('**/Gemfile.lock') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-gems-
|
|
|
|
- name: Setup environment
|
|
run: source ci_scripts/ci_common.sh && setup_github_actions_environment
|
|
|
|
- name: Run tests
|
|
run: |
|
|
if [[ -z "${{ github.event.inputs.test_name }}" ]]; then
|
|
bundle exec fastlane ui_tests
|
|
else
|
|
bundle exec fastlane ui_tests test_name:${{ github.event.inputs.test_name }}
|
|
fi
|
|
|
|
- name: Archive artifacts
|
|
uses: actions/upload-artifact@v3
|
|
if: always()
|
|
with:
|
|
name: test-output
|
|
path: fastlane/test_output
|
|
retention-days: 7
|
|
if-no-files-found: ignore
|
|
|
|
- name: Upload coverage to Codecov
|
|
uses: codecov/codecov-action@v3
|
|
with:
|
|
flags: uitests
|
|
|