-
Notifications
You must be signed in to change notification settings - Fork 440
Enable PHP 7.3 tests and functional for PHP 7.2 #772
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Finally works! |
Sorry about that. I did not realize that. |
- php: 7.1 | ||
services: docker | ||
sudo: required | ||
env: SYMFONY_VERSION=3.4.* FUNCTIONAL_TESTS=true PREPARE_CONTAINER=true | ||
env: SYMFONY_VERSION=^3.4 FUNCTIONAL_TESTS=true PREPARE_CONTAINER=true |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The version should be x.y.*
format to ensure that only that version is allowed. Composer could install anew newer version for ^3.4
constraint.
sudo: required | ||
services: docker | ||
env: SYMFONY_VERSION=^4.0 FUNCTIONAL_TESTS=true PREPARE_CONTAINER=true | ||
- php: 7.3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Php version does not matter for functional tests because they are run in the container which has php 7.1 inside it.
done in #845 |
No description provided.