Skip to content

Commit b474d60

Browse files
committed
This should work even on Windows, right?
1 parent c571df0 commit b474d60

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

Makefile

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
.PHONY: tests
22

33
tests:
4-
vendor/bin/paratest --no-coverage
4+
php vendor/bin/paratest --no-coverage
55

66
tests-integration:
7-
vendor/bin/paratest --no-coverage --group exec
7+
php vendor/bin/paratest --no-coverage --group exec
88

99
tests-static-reflection:
10-
vendor/bin/paratest --no-coverage --bootstrap tests/bootstrap-static-reflection.php
10+
php vendor/bin/paratest --no-coverage --bootstrap tests/bootstrap-static-reflection.php
1111

1212
tests-coverage:
13-
vendor/bin/paratest
13+
php vendor/bin/paratest
1414

1515
tests-integration-coverage:
16-
vendor/bin/paratest --group exec
16+
php vendor/bin/paratest --group exec
1717

1818
tests-static-reflection-coverage:
19-
vendor/bin/paratest --bootstrap tests/bootstrap-static-reflection.php
19+
php vendor/bin/paratest --bootstrap tests/bootstrap-static-reflection.php
2020

2121
cs:
22-
composer install --working-dir build-cs && build-cs/vendor/bin/phpcs
22+
composer install --working-dir build-cs && php build-cs/vendor/bin/phpcs
2323

2424
cs-fix:
25-
build-cs/vendor/bin/phpcbf
25+
php build-cs/vendor/bin/phpcbf

0 commit comments

Comments
 (0)