Skip to content

Test Symfony 5 #3

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

Merged
merged 1 commit into from
Feb 13, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ env:
- VERSION=2.8 TEST_REPO='-b 2.1 https://github.com/Codeception/symfony-demo.git' SUITES=functional TEST_PATH=framework-tests/src/AppBundle
- VERSION=3.4 TEST_REPO='--recurse-submodules https://github.com/Naktibalda/codeception-symfony-tests'
- VERSION=4 TEST_REPO='https://github.com/Codeception/symfony-demo.git' SUITES=functional,unit
- VERSION=5 TEST_REPO='-b symfony5 https://github.com/Codeception/symfony-demo.git' SUITES=functional,unit
matrix:
exclude:
- php: 7.0
Expand All @@ -34,6 +35,12 @@ matrix:
env: VERSION=4 TEST_REPO='https://github.com/Codeception/symfony-demo.git' SUITES=functional,unit
- php: 7.0
env: VERSION=4 TEST_REPO='https://github.com/Codeception/symfony-demo.git' SUITES=functional,unit
- php: 5.6
env: VERSION=5 TEST_REPO='-b symfony5 https://github.com/Codeception/symfony-demo.git' SUITES=functional,unit
- php: 7.0
env: VERSION=5 TEST_REPO='-b symfony5 https://github.com/Codeception/symfony-demo.git' SUITES=functional,unit
- php: 7.1
env: VERSION=5 TEST_REPO='-b symfony5 https://github.com/Codeception/symfony-demo.git' SUITES=functional,unit
services:
- mysql
before_install:
Expand All @@ -51,7 +58,6 @@ install:
- composer require symfony/css-selector=~$VERSION --no-update --ignore-platform-reqs
- composer require symfony/dom-crawler=~$VERSION --no-update --ignore-platform-reqs
- composer require symfony/browser-kit=~$VERSION --no-update --ignore-platform-reqs
- composer require symfony/browser-kit=~$VERSION --no-update --ignore-platform-reqs
- COMPOSER_MEMORY_LIMIT=-1 composer install
- COMPOSER_MEMORY_LIMIT=-1 composer update -d framework-tests --no-dev --prefer-dist --no-interaction
before_script:
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@

"require": {
"php": ">=5.6.0 <8.0",
"codeception/lib-innerbrowser": "dev-master | ^1.0",
"codeception/codeception": "4.0.x-dev | ^4.0"
"codeception/lib-innerbrowser": "^1.0",
"codeception/codeception": "^4.0"
},
"require-dev": {
"codeception/util-robohelpers": "dev-master",
Expand Down