Skip to content

Commit

Permalink
Remove unused UnitTest stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
magicsunday committed Feb 5, 2025
1 parent 3bf75c0 commit 80e7fcf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 173 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,3 @@ jobs:
if: ${{ always() && steps.install.conclusion == 'success' }}
run: |
composer ci:test:php:rector
- id: tests_unit
name: Unit Tests
if: ${{ always() && steps.install.conclusion == 'success' }}
run: |
composer ci:test:php:unit
2 changes: 1 addition & 1 deletion Build/Scripts/ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ set -x
# --------
# defaults
# --------
PHP_VERSION="8.3"
PHP_VERSION="8.2"
CORE_VERSION="13"

# -------------------
Expand Down
61 changes: 0 additions & 61 deletions Build/phpunit/UnitTests.xml

This file was deleted.

94 changes: 0 additions & 94 deletions Build/phpunit/UnitTestsBootstrap.php

This file was deleted.

17 changes: 6 additions & 11 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,14 @@
"typo3/cms-rte-ckeditor": "^13.4"
},
"require-dev": {
"typo3/testing-framework": "^7.0 || ^8.0",
"typo3/testing-framework": "^8.0 || ^9.0",
"friendsofphp/php-cs-fixer": "^3.65",
"saschaegerer/phpstan-typo3": "^1.0 || v2.x-dev",
"saschaegerer/phpstan-typo3": "v2.x-dev",
"overtrue/phplint": "^9.5",
"phpstan/phpstan": "^1.0 || ^2.0",
"phpstan/phpstan-strict-rules": "^1.0 || ^2.0",
"phpstan/phpstan-phpunit": "^1.0 || ^2.0",
"phpstan/phpstan-deprecation-rules": "^1.0 || ^2.0",
"ssch/typo3-rector": "^2.0 || ^3.0"
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"ssch/typo3-rector": "^3.0"
},
"autoload": {
"psr-4": {
Expand Down Expand Up @@ -83,9 +82,6 @@
"ci:test:php:lint": [
"phplint --configuration Build/.phplint.yml"
],
"ci:test:php:unit": [
"XDEBUG_MODE=coverage phpunit -c Build/UnitTests.xml"
],
"ci:test:php:phpstan": [
"phpstan analyze --configuration Build/phpstan.neon --memory-limit=-1"
],
Expand All @@ -99,7 +95,6 @@
"@ci:test:php:lint",
"@ci:test:php:phpstan",
"@ci:test:php:rector",
"@ci:test:php:unit",
"@ci:test:php:cgl"
]
}
Expand Down

0 comments on commit 80e7fcf

Please sign in to comment.