Skip to content
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
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,16 @@ php:
- 7.4
before_script:
- composer self-update
install:
- composer install
script:
- ./vendor/bin/phpunit --coverage-clover=coverage.clover
after_script:
- wget https://scrutinizer-ci.com/ocular.phar
- php ocular.phar code-coverage:upload --format=php-clover coverage.clover
jobs:
include:
- stage: Test
name: PHP 8
php: nightly
install: composer install --ignore-platform-reqs
9 changes: 0 additions & 9 deletions tests/ExtendedPdoTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -508,15 +508,6 @@ public function testTransactions()

$actual = $this->pdo->fetchAll("SELECT * FROM pdotest");
$this->assertSame(11, count($actual));

return $rollBackResult;
}

/**
* @depends testTransactions
*/
public function testRollBack($rollBackResult)
{
$this->assertTrue($rollBackResult);
}

Expand Down