-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
36 lines (30 loc) · 998 Bytes
/
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
install:
composer install
phpunit-without-deprecation-details:
php vendor/bin/phpunit \
--configuration phpunit.xml \
./tests
phpunit-with-some-deprecations:
rm -f some-deprecations-baseline.xml
php vendor/bin/phpunit \
--configuration some-deprecations-phpunit.xml \
--generate-baseline some-deprecations-baseline.xml \
./tests
cat some-deprecations-baseline.xml
run-phpunit-with-some-deprecations-baseline:
php vendor/bin/phpunit \
--configuration some-deprecations-phpunit.xml \
--use-baseline some-deprecations-baseline.xml \
./tests
phpunit-with-all-deprecations:
rm -f all-deprecations-baseline.xml
php vendor/bin/phpunit \
--configuration all-deprecations-phpunit.xml \
--generate-baseline all-deprecations-baseline.xml \
./tests
cat all-deprecations-baseline.xml
run-phpunit-with-all-deprecations-baseline:
php vendor/bin/phpunit \
--configuration all-deprecations-phpunit.xml \
--use-baseline all-deprecations-baseline.xml \
./tests