|
128 | 128 | "lint:templates": "bin/console lint:twig templates", |
129 | 129 | "lint:translations": "bin/console lint:translations", |
130 | 130 | "lint:yaml": "bin/console lint:yaml .github config translations --parse-tags", |
131 | | - "tests": [ |
132 | | - "@tests:php", |
133 | | - "@tests:docker" |
| 131 | + "test": [ |
| 132 | + "@test:php", |
| 133 | + "@test:images" |
134 | 134 | ], |
135 | | - "tests:docker": [ |
136 | | - "@tests:docker:standalone" |
| 135 | + "test:images": [ |
| 136 | + "@test:images:standalone" |
137 | 137 | ], |
138 | | - "tests:docker:standalone": [ |
| 138 | + "test:images:standalone": [ |
139 | 139 | "@build:standalone", |
140 | | - "bin/phpunit --configuration phpunit.docker.xml tests/Docker/Standalone" |
| 140 | + "bin/phpunit --configuration phpunit.images.xml tests/ImageTests/Standalone" |
141 | 141 | ], |
142 | | - "tests:php": [ |
143 | | - "@tests:php:unit", |
144 | | - "@tests:php:functional" |
| 142 | + "test:php": [ |
| 143 | + "@test:php:unit", |
| 144 | + "@test:php:functional" |
145 | 145 | ], |
146 | | - "tests:php:functional": "bin/phpunit tests/FunctionalTests", |
147 | | - "tests:php:unit": "bin/phpunit tests/UnitTests", |
148 | | - "tests:setup": [ |
| 146 | + "test:php:functional": "bin/phpunit tests/FunctionalTests", |
| 147 | + "test:php:unit": "bin/phpunit tests/UnitTests", |
| 148 | + "test:setup": [ |
149 | 149 | "bin/console --env=test doctrine:database:create --if-not-exists", |
150 | | - "bin/console --env=test doctrine:schema:update --force", |
| 150 | + "bin/console --env=test doctrine:schema:drop --full-database --force", |
| 151 | + "bin/console --env=test doctrine:schema:create", |
151 | 152 | "bin/console --env=test doctrine:fixtures:load --no-interaction" |
152 | 153 | ] |
153 | 154 | }, |
|
162 | 163 | "lint:templates": "Validate the Twig templates", |
163 | 164 | "lint:translations": "Validate the translations", |
164 | 165 | "lint:yaml": "Validate YAML files", |
165 | | - "tests": "Perform all code tests", |
166 | | - "tests:docker": "Run all tests for images", |
167 | | - "tests:docker:standalone": "Run tests in the standalone image", |
168 | | - "tests:php": "Run all PHP tests", |
169 | | - "tests:php:functional": "Run the functional test suite", |
170 | | - "tests:php:unit": "Run the unit test suite", |
171 | | - "tests:setup": "Prepare the Symfony test environment" |
| 166 | + "test": "Perform all code tests", |
| 167 | + "test:images": "Run all tests for OCI images", |
| 168 | + "test:images:standalone": "Run tests for the standalone OCI image", |
| 169 | + "test:php": "Run all PHP tests", |
| 170 | + "test:php:functional": "Run the functional test suite", |
| 171 | + "test:php:unit": "Run the unit test suite", |
| 172 | + "test:setup": "Prepare the Symfony test environment" |
172 | 173 | }, |
173 | 174 | "config": { |
174 | 175 | "allow-plugins": { |
|
0 commit comments