Skip to content

Commit 34e9ad7

Browse files
committed
[WIP] run acceptanceComposer in ci
1 parent b7d0b6d commit 34e9ad7

2 files changed

Lines changed: 3 additions & 25 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-22.04
1414
strategy:
1515
matrix:
16-
php: [ '8.2', '8.3', '8.4', '8.5']
16+
php: [ '8.5' ]
1717
TYPO3: [ '13', '14' ]
1818
steps:
1919
- name: Checkout
@@ -22,31 +22,8 @@ jobs:
2222
- name: Install testing system
2323
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s composerInstall
2424

25-
- name: Composer validate
26-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s composerValidate
27-
28-
- name: Lint PHP
29-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s lint
30-
31-
- name: CGL
32-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s cgl -n
33-
34-
- name: phpstan
35-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s phpstan
36-
37-
- name: Unit Tests
38-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s unit
39-
40-
- name: Functional Tests
41-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s functional -- --do-not-fail-on-deprecation --exclude-group v14-only
42-
if: matrix.TYPO3 == '13'
43-
44-
- name: Functional Tests 14
45-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s functional
46-
if: matrix.TYPO3 == '14'
47-
4825
- name: Acceptance Tests
49-
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s acceptance -- --fail-fast
26+
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s acceptanceComposer -- --fail-fast
5027
- name: Archive acceptance tests results
5128
uses: actions/upload-artifact@v6
5229
if: always()

Tests/Acceptance/Backend/LayoutCest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ public function canCreateContentElementInTranslatedContainerInFreeMode(BackendTe
214214
$uid = 104;
215215

216216
$selector = '#element-tt_content-' . $uid . ' div:nth-child(1) div:nth-child(2)';
217+
$I->wait(3);
217218
$I->dontSee('german', $selector);
218219
$dataColPos = $I->getDataColPos($uid, 200);
219220
$colPosSelector = '#element-tt_content-' . $uid . ' [data-colpos="' . $dataColPos . '"]';

0 commit comments

Comments
 (0)