From f5aaa59f8d802ae362bed70e34bc44edc45ff0ab Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Thu, 25 Jan 2018 11:40:39 -0500 Subject: [PATCH] Use composer-installed phpunit --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 65b11c8..05311f3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,9 +19,9 @@ variables: test:7.1: image: php:7.1 script: - - phpunit -c build --no-coverage + - vendor/bin/phpunit -c build --no-coverage test:7.2: image: php:7.2 script: - - phpunit -c build --no-coverage + - vendor/bin/phpunit -c build --no-coverage