Skip to content

Commit 16602a6

Browse files
committed
feat: add development files to export-ignore via git attributes
1 parent 548974d commit 16602a6

File tree

2 files changed

+20
-5
lines changed

2 files changed

+20
-5
lines changed

.gitattributes

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
/.build export-ignore
2+
/.github export-ignore
3+
/tests export-ignore
4+
.editorconfig export-ignore
5+
.env export-ignore
6+
.env.example export-ignore
7+
.gitattributes export-ignore
8+
.gitignore export-ignore
9+
.php-cs-fixer.dist.php
10+
.pre-commit-config.yaml
11+
.yamllint.yaml
12+
docker-compose.yaml
13+
Makefile
14+
package.json
15+
phpstan.neon.dist
16+
phpstan-baseline.neon
17+
phpunit.xml.dist export-ignore
18+
renovate.json export-ignore

Makefile

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -172,12 +172,9 @@ lint-stan-ci:
172172
$(APP_COMPOSER) stan:ci
173173
.PHONY: lint-stan-ci
174174

175-
#test: ## Run project php-unit and pest tests
176-
# $(APP_COMPOSER) test
177-
#.PHONY: test
178-
179175
test: ## Run project php-unit and pest tests
180-
$(APP_RUNNER) vendor/bin/pest tests/src/Bridge/Laravel/LoggerFactoryTest.php
176+
$(APP_COMPOSER) test
177+
.PHONY: test
181178

182179
test-cc: ## Run project php-unit and pest tests in coverage mode and build report
183180
$(APP_COMPOSER) test:cc

0 commit comments

Comments
 (0)