We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed61a25 commit 4f9b3a9Copy full SHA for 4f9b3a9
.github/workflows/db-tests.yml
@@ -39,4 +39,4 @@ jobs:
39
php_version: 7.1
40
php_extensions: bcmath
41
bootstrap: vendor/autoload.php
42
- args: --testsuite "Integration"
+ args: --testsuite "Database"
.github/workflows/no-db-test.yml
@@ -28,4 +28,4 @@ jobs:
28
php_version: ${{ matrix.php-version }}
29
30
31
- args: --testsuite "Unit"
+ args: --testsuite "NoDatabase"
phpunit.xml
@@ -9,7 +9,7 @@
9
>
10
<testsuites>
11
<testsuite name="Database">
12
- <directory>./tests/Integration</directory>
+ <directory>./tests/connection</directory>
13
<file>./tests/BoltTest.php</file>
14
</testsuite>
15
<testsuite name="NoDatabase">
0 commit comments