Skip to content

Commit

Permalink
Review fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arogachev committed Jan 24, 2025
1 parent 9389803 commit a237e29
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,25 +29,25 @@ shell: CMD="bash" ## Open interactive shell.
shell: run

test-all: test-base \
test-driver-all ## Run all available tests.
test-driver-all: test-driver-sqlite \
test-driver-mysql \
test-driver-mariadb \
test-driver-pgsql \
test-driver-mssql \
test-driver-oracle ## Run tests for all drivers.
test-drivers ## Run all available tests.
test-drivers: test-sqlite \
test-mysql \
test-mariadb \
test-pgsql \
test-mssql \
test-oracle ## Run tests for all drivers.
test-base: testsuite-Db ## Run tests for base db package only.
test-driver-sqlite: testsuite-Sqlite ## Run tests for SQLite driver only.
test-driver-mysql: testsuite-Mysql ## Run tests for MySQL driver only (using MySQL database).
test-driver-mariadb: ## Run tests for MySQL driver only (using MariaDB database).
test-sqlite: testsuite-Sqlite ## Run tests for SQLite driver only.
test-mysql: testsuite-Mysql ## Run tests for MySQL driver only (using MySQL database).
test-mariadb: ## Run tests for MySQL driver only (using MariaDB database).
docker compose -f docker/docker-compose.yml -f docker/docker-compose.override.yml run \
--rm \
--entrypoint "vendor/bin/phpunit --testsuite Mysql $(RUN_ARGS)" \
-e YII_MYSQL_TYPE=mariadb \
php
test-driver-pgsql: testsuite-Pgsql ## Run tests for PostgreSQL driver only.
test-driver-mssql: testsuite-Mssql ## Run tests for Microsoft SQL Server driver only.
test-driver-oracle: ## Run tests for Oracle driver only.
test-pgsql: testsuite-Pgsql ## Run tests for PostgreSQL driver only.
test-mssql: testsuite-Mssql ## Run tests for Microsoft SQL Server driver only.
test-oracle: ## Run tests for Oracle driver only.
docker compose -f docker/docker-compose.yml -f docker/docker-compose.override.yml run \
--rm \
--entrypoint "bash -c -l 'vendor/bin/phpunit --testsuite Oracle $(RUN_ARGS)'" \
Expand Down

0 comments on commit a237e29

Please sign in to comment.