Currently I have a very simple test in codeception works in php 7.1, 7.2, but fails in 7.3.
travis.yml:
language: php
php:
- 7.1
- 7.2
- 7.3
# faster builds on new travis setup not using sudo
sudo: false
# cache vendor dirs
cache:
directories:
- $HOME/.composer/cache
install:
- travis_retry composer self-update && composer --version
- travis_retry composer update --dev --prefer-dist --no-interaction
before_script:
- vendor/bin/codecept build
- php -S localhost:8080 -t public > /dev/null 2>&1&
script:
- vendor/bin/codecept run
The problem is that the server is not responding:
`- php -S localhost:8080 -t public > /dev/null 2>&1&
Thks.