Skip to content

Commit bb79982

Browse files
committed
Rename test:docker Composer namespace to test:images
1 parent 73becf7 commit bb79982

5 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/tests-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,4 +53,4 @@ jobs:
5353
run: bin/phpunit --version
5454

5555
- name: Run PHPUnit
56-
run: bin/phpunit --configuration phpunit.docker.xml ${{ env.PHPUNIT_FLAGS }}
56+
run: bin/phpunit --configuration phpunit.images.xml ${{ env.PHPUNIT_FLAGS }}

AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,6 @@ symfony composer run test:php
5252
symfony composer run test:php:unit
5353
symfony composer run test:php:functional
5454

55-
# Run tests for Docker images
56-
symfony composer run test:docker
55+
# Run only tests for OCI images
56+
symfony composer run test:images
5757
```

CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ symfony composer test:php
7676
symfony composer test:php:unit
7777
symfony composer test:php:functional
7878

79-
# Run tests for Docker images
80-
symfony composer test:docker
81-
symfony composer test:docker:standalone
79+
# Run only tests for OCI images
80+
symfony composer test:images
81+
symfony composer test:images:standalone
8282
```
8383

8484
[codedmonkey-sponsor]: https://github.com/sponsors/codedmonkey

composer.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -130,14 +130,14 @@
130130
"lint:yaml": "bin/console lint:yaml .github config translations --parse-tags",
131131
"test": [
132132
"@test:php",
133-
"@test:docker"
133+
"@test:images"
134134
],
135-
"test:docker": [
136-
"@test:docker:standalone"
135+
"test:images": [
136+
"@test:images:standalone"
137137
],
138-
"test:docker:standalone": [
138+
"test:images:standalone": [
139139
"@build:standalone",
140-
"bin/phpunit --configuration phpunit.docker.xml tests/Docker/Standalone"
140+
"bin/phpunit --configuration phpunit.images.xml tests/Docker/Standalone"
141141
],
142142
"test:php": [
143143
"@test:php:unit",
@@ -164,8 +164,8 @@
164164
"lint:translations": "Validate the translations",
165165
"lint:yaml": "Validate YAML files",
166166
"test": "Perform all code tests",
167-
"test:docker": "Run all tests for images",
168-
"test:docker:standalone": "Run tests in the standalone image",
167+
"test:images": "Run all tests for OCI images",
168+
"test:images:standalone": "Run tests for the standalone OCI image",
169169
"test:php": "Run all PHP tests",
170170
"test:php:functional": "Run the functional test suite",
171171
"test:php:unit": "Run the unit test suite",
File renamed without changes.

0 commit comments

Comments
 (0)