Skip to content

Commit

Permalink
Fix [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
arogachev committed Dec 10, 2024
1 parent 6da0e5b commit 1d5491a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ run: ## Run arbitrary command.
shell: CMD="bash" ## Open interactive shell.
shell: run

test-all: test-base \ ## Run all available tests.
test-driver-all
test-driver-all: test-driver-sqlite \ ## Run tests for all drivers.
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
test-driver-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).
Expand All @@ -47,7 +47,7 @@ test-driver-mariadb: ## Run tests for MySQL driver only (using MariaDB database)
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 tsets for Oracle driver only.
test-driver-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
2 changes: 1 addition & 1 deletion docs/internals.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ In case of ports' collisions, the mapping and enviroment variables can also be a
- `make test-driver-mariadb` - run tests for MySQL driver only (using MariaDB database).
- `make test-driver-pgsql` - run tests for PostgreSQL driver only.
- `make test-driver-mssql` - run tests for Microsoft SQL Server driver only.
- `make test-driver-oracle`- run tsets for Oracle driver only.
- `make test-driver-oracle`- run tests for Oracle driver only.

#### Testing different versions

Expand Down

0 comments on commit 1d5491a

Please sign in to comment.