We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53d5893 commit 94b399bCopy full SHA for 94b399b
testing/run_test_suite.sh
@@ -167,8 +167,10 @@ do
167
composer -q install
168
fi
169
if [ $? != 0 ]; then
170
+ # Generate the lock file (required for check-platform-reqs)
171
+ composer update --ignore-platform-reqs
172
# If the PHP required version is too low, skip the test
- if composer check-platform-reqs | grep "__root__ requires php" | grep failed ; then
173
+ if composer check-platform-reqs | grep "requires php" | grep failed ; then
174
echo "Skipping tests in $DIR (incompatible PHP version)"
175
else
176
# Run composer without "-q"
0 commit comments