Skip to content

Commit

Permalink
[TASK] run acceptance tests
Browse files Browse the repository at this point in the history
  • Loading branch information
achimfritz committed Dec 22, 2024
1 parent 5306d70 commit 1a6aced
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
- name: Functional Tests
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s functional

- name: Acceptance Tests v12/v11
- name: Acceptance Tests
run: Build/Scripts/runTests.sh -p ${{ matrix.php }} -t ${{ matrix.TYPO3 }} -s acceptance -- --fail-fast

- name: Archive acceptance tests results
Expand Down
12 changes: 0 additions & 12 deletions Tests/Acceptance/Support/Extension/BackendContainerEnvironment.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,16 +66,4 @@ class BackendContainerEnvironment extends BackendEnvironment
__DIR__ . '/../../Fixtures/be_groups.csv',
],
];

public function _initialize(): void
{
$typo3Version = GeneralUtility::makeInstance(Typo3Version::class);
if ($typo3Version->getMajorVersion() === 13) {
$this->localConfig['testExtensionsToLoad'] = [
'b13/container',
'b13/container-example',
];
}
parent::_initialize();
}
}

0 comments on commit 1a6aced

Please sign in to comment.