Skip to content
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

Add PHP7.4snapshot to Travis #289

Merged
merged 2 commits into from
Jul 30, 2019
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
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ php:
- 7.1
- 7.2
- 7.3
- 7.4snapshot

addons:
apt:
Expand Down Expand Up @@ -57,7 +58,10 @@ matrix:
env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true
- php: 7.2
env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true
- php: 7.4snapshot
env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true
allow_failures:
- php: 7.4snapshot
# Use for coverage report
- php: 7.3
env: DB=pgsql USER=postgres DBPASS=password DBUSER=postgres COVERAGE=true
Expand Down
4 changes: 0 additions & 4 deletions tests/class/plugin/LoadClassFileChangeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,6 @@ protected function setUp()
{
parent::setUp();
$this->createPlugin();
if (PHP_VERSION_ID < 70200) {
$objPlugin = SC_Helper_Plugin_Ex::getSingletonInstance();
$objPlugin->load();
}
}

protected function tearDown()
Expand Down