From 23e9870f6f1783d3382615ee7f9c26a2a29d47d8 Mon Sep 17 00:00:00 2001 From: Erick Hitter <git-contrib@ethitter.com> Date: Sat, 29 Aug 2020 10:36:13 -0700 Subject: [PATCH] Fix PHPUnit version `Error: Looks like you're using PHPUnit 4.8.36. WordPress requires at least PHPUnit 5.4 and is currently only compatible with PHPUnit up to 7.x.` --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 678d3cd..4944e6d 100755 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -18,7 +18,7 @@ before_script: if [[ $(php -v) =~ "PHP 7." ]]; then composer global require "phpunit/phpunit=6.1.*" else - composer global require "phpunit/phpunit=4.8.*" + composer global require "phpunit/phpunit=5.4.*" fi PHPunit:PHP5.3:MySQL: -- GitLab