Skip to content

jacoco UI tests coverage report #17

jacoco UI tests coverage report

jacoco UI tests coverage report #17

Workflow file for this run

name: Run UI Tests
on: push
jobs:
run-ui-test:
name: run tests
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
runIde: |
export DISPLAY=:99.0
Xvfb -ac :99 -screen 0 1920x1080x24 &
sleep 10
mkdir -p build/reports
./gradlew :runIdeForUiTests > build/reports/idea.log &
runTests: |
export DISPLAY=:99.0
./gradlew :test
url: http://127.0.0.1:8082
reportName: ui-test-fails-report-linux
runs-on: ${{ matrix.os }}
steps:
- uses: actions/[email protected]
- name: Setup Java
uses: actions/[email protected]
with:
distribution: zulu
java-version: 17
- name: Setup FFmpeg
uses: FedericoCarboni/setup-ffmpeg@v2
with:
# Not strictly necessary, but it may prevent rate limit
# errors especially on GitHub-hosted macos machines.
token: ${{ secrets.GITHUB_TOKEN }}
- name: Clean
run: ./gradlew :clean
- name: Run Idea
run: ${{ matrix.runIde }}
- name: Wait for Idea started
uses: jtalk/url-health-check-action@v3
with:
url: ${{ matrix.url }}
max-attempts: 15
retry-delay: 30s
- name: Run tests
run: ${{ matrix.runTests }}
- name: Move video
if: ${{ failure() }}
run: mv video build/reports
- name: Wait for reports
uses: jakejarvis/wait-action@master
with:
time: '10s'
- name: Save reports
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.reportName }}
path: |
build/reports