Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
composer-options: ${{ matrix.composer-options }}

- name: "Tests"
run: "vendor/bin/phpunit --testsuite=integration"
run: "vendor/bin/phpunit --testsuite=integration --no-coverage"

mongodb:
name: "mongodb"
Expand Down Expand Up @@ -113,4 +113,4 @@ jobs:
composer-options: ${{ matrix.composer-options }}

- name: "Tests"
run: "vendor/bin/phpunit --testsuite=integration"
run: "vendor/bin/phpunit --testsuite=integration --no-coverage"
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,15 @@ phpunit: vendor phpunit-unit phpunit-integration #

.PHONY: phpunit-integration
phpunit-integration: vendor ## run phpunit integration tests
MONGODB_URI="mongodb://localhost:27017" POSTGRES_URI="pgsql:host=localhost;port=5432;dbname=eventstore;user=postgres;password=postgres" vendor/bin/phpunit --testsuite=integration
MONGODB_URI="mongodb://localhost:27017" POSTGRES_URI="pgsql:host=localhost;port=5432;dbname=eventstore;user=postgres;password=postgres" vendor/bin/phpunit --testsuite=integrationn --no-coverage

.PHONY: phpunit-integration-postgres
phpunit-integration-postgres: vendor ## run phpunit integration tests on postgres
POSTGRES_URI="pgsql:host=localhost;port=5432;dbname=eventstore;user=postgres;password=postgres" vendor/bin/phpunit --testsuite=integration
POSTGRES_URI="pgsql:host=localhost;port=5432;dbname=eventstore;user=postgres;password=postgres" vendor/bin/phpunit --testsuite=integration --no-coverage

.PHONY: phpunit-integration-mongodb
phpunit-integration-mongodb: vendor ## run phpunit integration tests on mysql
MONGODB_URI="mongodb://localhost:27017" vendor/bin/phpunit --testsuite=integration
MONGODB_URI="mongodb://localhost:27017" vendor/bin/phpunit --testsuite=integration --no-coverage

.PHONY: phpunit-unit
phpunit-unit: vendor ## run phpunit unit tests
Expand Down
13 changes: 6 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,15 @@
},
"require-dev": {
"ext-mongodb": "^2.1",
"infection/infection": "^0.31.9",
"infection/infection": "^0.32.6",
"mongodb/mongodb": "^2.1",
"patchlevel/coding-standard": "^1.3.0",
"patchlevel/rango": "1.0.0-alpha.4",
"phpat/phpat": "^0.12.0",
"phpbench/phpbench": "^1.2.15",
"phpstan/phpstan": "^2.1.32",
"phpstan/phpstan-phpunit": "^2.0.8",
"phpunit/phpunit": "^11.5.17",
"symfony/var-dumper": "^6.4.0 || ^7.0.0 || ^8.0.0"
"phpat/phpat": "^0.12.4",
"phpbench/phpbench": "^1.6.1",
"phpstan/phpstan": "^2.1.46",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpunit/phpunit": "^11.5.55"
},
"config": {
"preferred-install": {
Expand Down
Loading
Loading