-
Notifications
You must be signed in to change notification settings - Fork 3
/
Makefile
56 lines (42 loc) · 1.13 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# customization
PACKAGE_NAME = olvlvl/composer-attribute-collector
PHPUNIT = vendor/bin/phpunit
# do not edit the following lines
vendor:
@composer install
# testing
.PHONY: test-dependencies
test-dependencies: vendor test-cleanup
.PHONY: test
test: test-dependencies
@$(PHPUNIT)
.PHONY: test-coverage
test-coverage: test-dependencies
@mkdir -p build/coverage
@XDEBUG_MODE=coverage $(PHPUNIT) --coverage-html build/coverage
.PHONY: test-coveralls
test-coveralls: test-dependencies
@mkdir -p build/logs
@XDEBUG_MODE=coverage $(PHPUNIT) --coverage-clover build/logs/clover.xml
.PHONY: test-cleanup
test-cleanup:
@rm -rf .composer-attribute-collector/*
@rm -rf tests/sandbox/*
.PHONY: test-container
test-container: test-container80
.PHONY: test-container80
test-container80:
@-docker-compose run --rm app80 bash
@docker-compose down -v
.PHONY: test-container81
test-container81:
@-docker-compose run --rm app81 bash
@docker-compose down -v
.PHONY: test-container82
test-container82:
@-docker-compose run --rm app82 bash
@docker-compose down -v
.PHONY: lint
lint:
@XDEBUG_MODE=off phpcs -s
@XDEBUG_MODE=off vendor/bin/phpstan