1
0
mirror of https://github.com/chylex/IntelliJ-IdeaVim.git synced 2025-05-06 21:34:02 +02:00

Rename ui tests for better consistency

This commit is contained in:
Alex Plate 2024-02-09 16:11:14 +02:00
parent 519d5eed06
commit 2483450a1f
No known key found for this signature in database
GPG Key ID: 0B97153C8FFEC09F
36 changed files with 10 additions and 10 deletions

View File

@ -30,7 +30,7 @@ jobs:
- name: Run Idea
run: |
mkdir -p build/reports
gradle :tests:ij-ui-tests:runIdeForUiTests > build/reports/idea.log &
gradle :tests:ui-ij-tests:runIdeForUiTests > build/reports/idea.log &
- name: Wait for Idea started
uses: jtalk/url-health-check-action@v3
with:
@ -38,10 +38,10 @@ jobs:
max-attempts: 20
retry-delay: 10s
- name: Tests
run: gradle :tests:ij-ui-tests:testUi
run: gradle :tests:ui-ij-tests:testUi
- name: Move video
if: always()
run: mv tests/ij-ui-tests/video build/reports
run: mv tests/ui-ij-tests/video build/reports
- name: Move sandbox logs
if: always()
run: mv build/idea-sandbox/system/log sandbox-idea-log

View File

@ -30,7 +30,7 @@ jobs:
- name: Run Idea
run: |
mkdir -p build/reports
gradle :tests:py-ui-tests:runIdeForUiTests > build/reports/idea.log &
gradle :tests:ui-py-tests:runIdeForUiTests > build/reports/idea.log &
- name: Wait for Idea started
uses: jtalk/url-health-check-action@v3
with:
@ -38,10 +38,10 @@ jobs:
max-attempts: 20
retry-delay: 10s
- name: Tests
run: gradle :tests:py-ui-tests:testUi
run: gradle :tests:ui-py-tests:testUi
- name: Move video
if: always()
run: mv tests/py-ui-tests/video build/reports
run: mv tests/ui-py-tests/video build/reports
- name: Move sandbox logs
if: always()
run: mv build/idea-sandbox/system/log sandbox-idea-log

View File

@ -27,7 +27,7 @@ jobs:
- name: Run Idea
run: |
mkdir -p build/reports
gradle :tests:ij-ui-tests:runIdeForUiTests > build/reports/idea.log &
gradle :tests:ui-ij-tests:runIdeForUiTests > build/reports/idea.log &
- name: Wait for Idea started
uses: jtalk/url-health-check-action@v3
with:
@ -35,7 +35,7 @@ jobs:
max-attempts: 20
retry-delay: 10s
- name: Tests
run: gradle :tests:ij-ui-tests:testUi
run: gradle :tests:ui-ij-tests:testUi
- name: Move video
if: always()
run: mv tests/ij-ui-tests/video build/reports

View File

@ -15,5 +15,5 @@ include 'annotation-processors'
include 'tests:java-tests'
include 'tests:property-tests'
include 'tests:long-running-tests'
include 'tests:ij-ui-tests'
include 'tests:py-ui-tests'
include 'tests:ui-ij-tests'
include 'tests:ui-py-tests'