Skip to content

Commit 9a4cb0a

Browse files
committed
Remove functional tests
1 parent 08ae588 commit 9a4cb0a

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.github/workflows/tests.yml

-2
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,5 @@ jobs:
3939
command: composer update --${{ matrix.stability }} --prefer-dist --no-interaction --no-progress
4040
- name: Execute Unit Tests
4141
run: composer test:unit
42-
- name: Execute Functional Tests
43-
run: composer test:functional
4442
- name: Execute Feature Tests
4543
run: composer test:feature

composer.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,8 @@
6363
"scripts": {
6464
"build": "@php bin/build",
6565

66-
"test": ["@test:unit", "@test:functional", "@test:feature"],
66+
"test": ["@test:unit", "@test:feature"],
6767
"test:unit": "phpunit --testdox --testsuite=unit",
68-
"test:functional": "phpunit --testsuite=functional",
6968
"test:feature": "behat",
7069

7170
"linter": "@linter:check",

phpunit.xml

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
<testsuite name="unit">
1414
<directory>tests/Unit</directory>
1515
</testsuite>
16-
<testsuite name="functional">
17-
<directory>tests/Functional</directory>
18-
</testsuite>
1916
</testsuites>
2017

2118
<coverage/>

0 commit comments

Comments
 (0)