mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-25 05:56:14 +01:00
Mirror of TYPO3 Extension tea, managed by the Best Practice Team
https://typo3.org/community/teams/best-practices
16aee3c836
The TYPO3 core `runTests.sh` contains the `-u` option to update the images and remove dangling images. Providing an image name and a `--filter` option is not supported by podmand and has not been discovered yet in the TYPO3 core implementation yet - and adopted with the recently sync of this repository implementation to the TYPO3 one. Both supported docker binaries `docker` and `podman` supportes filtering images using the `reference` filter option. Therefore, this change modifies the dangling image remove command to use double filter options. To verify that double filtering can be used, following command can be executed if already some images have been downloaded: ```shell podman images \ --filter "reference=ghcr.io/sbuerk/demo-core-testing-*" --filter "dangling=false" --format "{{.ID}}" docker images \ --filter "reference=ghcr.io/sbuerk/demo-core-testing-*" --filter "dangling=false" --format "{{.ID}}" ``` **Note:** `dangling=false` is used here instead of `dangling=true` like in `runTests.sh` Resolves: #1088 |
||
---|---|---|
.ddev | ||
.github | ||
.gitlab | ||
Build | ||
Classes | ||
Configuration | ||
Documentation | ||
Resources | ||
Tests | ||
tools | ||
.editorconfig | ||
.eslintignore | ||
.eslintrc.json | ||
.gitattributes | ||
.gitignore | ||
.php-cs-fixer.php | ||
.phpstorm.meta.php | ||
.prettierrc.js | ||
CHANGELOG.md | ||
CODE_OF_CONDUCT.md | ||
composer.json | ||
CONTRIBUTING.md | ||
ext_emconf.php | ||
ext_localconf.php | ||
ext_tables.sql | ||
LICENSE | ||
package.json | ||
phive.xml | ||
phpcs.xml | ||
phpstan-baseline.neon | ||
phpstan.neon | ||
README.md | ||
stylelint.config.js |
Example TYPO3 extension for code quality checks and automated tests
This TYPO3 extension, based on Extbase and Fluid, is an example of best practices in automated code checks, unit/functional/acceptance testing and continuous integration.
You can also use this extension to manage your collection of delicious teas.
URL | |
---|---|
Repository: | https://github.com/FriendsOfTYPO3/tea |
Read online: | https://docs.typo3.org/p/ttn/tea/main/en-us/ |
TER: | https://extensions.typo3.org/extension/tea/ |
Slack: | https://typo3.slack.com/channels/qa-best-practices |
Presentation at the TYPO3 Online Days 2021
At the TYPO3 Online Days 2021, Oliver Klee held a session where her presented our approach for automating the code quality of extensions.