Skip to content

Commit 4f9b3a9

Browse files
committed
setup workflows to use testsuites
1 parent ed61a25 commit 4f9b3a9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/db-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ jobs:
3939
php_version: 7.1
4040
php_extensions: bcmath
4141
bootstrap: vendor/autoload.php
42-
args: --testsuite "Integration"
42+
args: --testsuite "Database"

.github/workflows/no-db-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
php_version: ${{ matrix.php-version }}
2929
php_extensions: bcmath
3030
bootstrap: vendor/autoload.php
31-
args: --testsuite "Unit"
31+
args: --testsuite "NoDatabase"

phpunit.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
>
1010
<testsuites>
1111
<testsuite name="Database">
12-
<directory>./tests/Integration</directory>
12+
<directory>./tests/connection</directory>
1313
<file>./tests/BoltTest.php</file>
1414
</testsuite>
1515
<testsuite name="NoDatabase">

0 commit comments

Comments
 (0)