diff --git a/composer.json b/composer.json index a8a95dba..3159566c 100644 --- a/composer.json +++ b/composer.json @@ -110,7 +110,7 @@ ], "test:ci": [ "@test:unit:ci", - "@test:db", + "@test:db:ci", "@test:api" ], "test:unit": "phpdbg -qrr vendor/bin/phpunit --order-by=random --colors=always --coverage-php build/coverage-unit.cov --testdox", @@ -121,6 +121,11 @@ "@test:db:maria", "@test:db:postgres" ], + "test:db:ci": [ + "@test:db:sqlite", + "@test:db:mysql", + "@test:db:postgres" + ], "test:db:sqlite": "APP_ENV=test phpdbg -qrr vendor/bin/phpunit --order-by=random --colors=always -c phpunit-db.xml --coverage-php build/coverage-db.cov --testdox", "test:db:mysql": "DB_DRIVER=mysql composer test:db:sqlite", "test:db:maria": "DB_DRIVER=maria composer test:db:sqlite", @@ -151,9 +156,11 @@ "test:ci": "Runs all test suites, generating all needed reports and logs for CI envs", "test:unit": "Runs unit test suites", "test:unit:ci": "Runs unit test suites, generating all needed reports and logs for CI envs", - "test:db": "Runs database test suites on a SQLite, MySQL and PostgreSQL", + "test:db": "Runs database test suites on a SQLite, MySQL, MariaDB and PostgreSQL", + "test:db:ci": "Runs database test suites on a SQLite, MySQL and PostgreSQL", "test:db:sqlite": "Runs database test suites on a SQLite database", "test:db:mysql": "Runs database test suites on a MySQL database", + "test:db:maria": "Runs database test suites on a MariaDB database", "test:db:postgres": "Runs database test suites on a PostgreSQL database", "test:api": "Runs API test suites", "test:pretty": "Runs all test suites and generates an HTML code coverage report",