Skip to content

Commit 0cf5603

Browse files
Fix dist-test: Install dev dependencies in distribution and run PHPUnit from there
1 parent 4d16431 commit 0cf5603

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,8 @@ dist-zip: clean-test clean-dist
9898
zip -qr $(DIST).zip $(DIST)
9999

100100
dist-test: dist-zip install-vendor
101-
$(PHPUNIT) --do-not-cache-result --no-logging --bootstrap=$(DIST)/bootstrap.php --configuration=$(DIST)/phpunit.xml
101+
cd $(DIST) && composer install $(COMPOSER_INSTALL_FLAGS)
102+
cd $(DIST) && ./vendor/bin/phpunit --do-not-cache-result --no-logging
102103

103104
###
104105
# install vendor rules

0 commit comments

Comments
 (0)