Skip to content

Commit 9a732e9

Browse files
committed
chore: fix integration tests
Signed-off-by: Stephane Bouchet <[email protected]>
1 parent a1e4593 commit 9a732e9

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -102,19 +102,19 @@ jobs:
102102
Xvfb -ac :99 -screen 0 1920x1080x24 &
103103
cd src/test-project
104104
chmod +x gradlew
105-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.information.* --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.settings.*
105+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.information.* --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.settings.*
106106
if: runner.os == 'Linux'
107107
- name: Run integration tests on Windows
108108
run: |
109109
cd src\test-project
110110
chmod +x gradlew.bat
111-
.\gradlew.bat clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.information.* --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.settings.*
111+
.\gradlew.bat integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.information.* --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.settings.*
112112
if: runner.os == 'Windows'
113113
- name: Run integration tests on MacOS
114114
run: |
115115
cd src/test-project
116116
chmod +x gradlew
117-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.information.* --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.settings.*
117+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.information.* --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.settings.*
118118
if: runner.os == 'macOS'
119119
- name: Archiving tests reports
120120
uses: actions/upload-artifact@v4
@@ -160,19 +160,19 @@ jobs:
160160
Xvfb -ac :99 -screen 0 1920x1080x24 &
161161
cd src/test-project
162162
chmod +x gradlew
163-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.project_manipulation.*
163+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.project_manipulation.*
164164
if: runner.os == 'Linux'
165165
- name: Run integration tests on Windows
166166
run: |
167167
cd src\test-project
168168
chmod +x gradlew.bat
169-
.\gradlew.bat clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.project_manipulation.*
169+
.\gradlew.bat integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.project_manipulation.*
170170
if: runner.os == 'Windows'
171171
- name: Run integration tests on MacOS
172172
run: |
173173
cd src/test-project
174174
chmod +x gradlew
175-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.project_manipulation.*
175+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.project_manipulation.*
176176
if: runner.os == 'macOS'
177177
- name: Archiving tests reports
178178
uses: actions/upload-artifact@v4
@@ -213,19 +213,19 @@ jobs:
213213
Xvfb -ac :99 -screen 0 1920x1080x24 &
214214
cd src/test-project
215215
chmod +x gradlew
216-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.FlatWelcomeFrameTest
216+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.FlatWelcomeFrameTest
217217
if: runner.os == 'Linux'
218218
- name: Run integration tests on Windows
219219
run: |
220220
cd src\test-project
221221
chmod +x gradlew.bat
222-
.\gradlew.bat clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.FlatWelcomeFrameTest
222+
.\gradlew.bat integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.FlatWelcomeFrameTest
223223
if: runner.os == 'Windows'
224224
- name: Run integration tests on MacOS
225225
run: |
226226
cd src/test-project
227227
chmod +x gradlew
228-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.FlatWelcomeFrameTest
228+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.dialogs.FlatWelcomeFrameTest
229229
if: runner.os == 'macOS'
230230
- name: Archiving tests reports
231231
uses: actions/upload-artifact@v4
@@ -266,19 +266,19 @@ jobs:
266266
Xvfb -ac :99 -screen 0 1920x1080x24 &
267267
cd src/test-project
268268
chmod +x gradlew
269-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.menubar.*
269+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.menubar.*
270270
if: runner.os == 'Linux'
271271
- name: Run integration tests on Windows
272272
run: |
273273
cd src\test-project
274274
chmod +x gradlew.bat
275-
.\gradlew.bat clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.menubar.*
275+
.\gradlew.bat integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.menubar.*
276276
if: runner.os == 'Windows'
277277
- name: Run integration tests on MacOS
278278
run: |
279279
cd src/test-project
280280
chmod +x gradlew
281-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.menubar.*
281+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.menubar.*
282282
if: runner.os == 'macOS'
283283
- name: Archiving tests reports
284284
uses: actions/upload-artifact@v4
@@ -320,19 +320,19 @@ jobs:
320320
Xvfb -ac :99 -screen 0 1920x1080x24 &
321321
cd src/test-project
322322
chmod +x gradlew
323-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
323+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
324324
if: runner.os == 'Linux'
325325
- name: Run integration tests on Windows
326326
run: |
327327
cd src\test-project
328328
chmod +x gradlew.bat
329-
.\gradlew.bat clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
329+
.\gradlew.bat integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
330330
if: runner.os == 'Windows'
331331
- name: Run integration tests on MacOS
332332
run: |
333333
cd src/test-project
334334
chmod +x gradlew
335-
./gradlew clean integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
335+
./gradlew integrationUITest --warning-mode none --tests com.redhat.devtools.intellij.commonuitest.fixtures.test.mainidewindow.toolwindowspane.*
336336
if: runner.os == 'macOS'
337337
- name: Archiving tests reports
338338
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)