summaryrefslogtreecommitdiff
path: root/Makefile
blob: 99616c7bd10a85fe21164c4765a0306a41b48c3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONY: test-all test-7.2 test-7.1 test-7.0

test-all: start test-7.2 test-7.1 test-7.0

test-7.2:
	docker-compose exec php-7.2 php /app/vendor/phpunit/phpunit/phpunit --configuration /app/phpunit.xml

test-7.1:
	docker-compose exec php-7.1 php /app/vendor/phpunit/phpunit/phpunit --configuration /app/phpunit.xml

test-7.0:
	docker-compose exec php-7.0 php /app/vendor/phpunit/phpunit/phpunit --configuration /app/phpunit.xml

start:
	docker-compose up -d