Skip to content

Commit

Permalink
use feature instead of feature
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasVHG committed Aug 8, 2023
1 parent e40fed0 commit 930791a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: up down install ci stan cs cs-fix test migrate config init features
.PHONY: up down install ci stan cs cs-fix test migrate config init feature

up:
docker-compose up -d
Expand Down Expand Up @@ -30,14 +30,14 @@ test-filter:
test-group:
docker exec -it php.uitdatabank composer test -- --group=$(group)

features-init:
docker exec -it php.uitdatabank composer features -- --tags @init
feature-init:
docker exec -it php.uitdatabank composer feature -- --tags @init

features:
docker exec -it php.uitdatabank composer features -- --tags "~@init"
feature:
docker exec -it php.uitdatabank composer feature -- --tags "~@init"

features-filter:
docker exec -it php.uitdatabank composer features -- $(path)
feature-filter:
docker exec -it php.uitdatabank composer feature -- $(path)

migrate:
docker exec -it php.uitdatabank ./vendor/bin/doctrine-dbal migrations:migrate --no-interaction
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@
],
"scripts": {
"test": "vendor/bin/phpunit",
"features": "vendor/bin/behat",
"feature": "vendor/bin/behat",
"phpstan": "vendor/bin/phpstan analyse",
"migrate": "vendor/bin/doctrine-dbal migrations:migrate --no-interaction",
"ci": [
Expand Down

0 comments on commit 930791a

Please sign in to comment.