Commit 2c82e91 1 parent 2a5371c commit 2c82e91 Copy full SHA for 2c82e91
File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 11
11
strategy :
12
12
matrix :
13
13
os :
14
- - ubuntu-22 .04
14
+ - ubuntu-24 .04
15
15
- windows-2022
16
16
php :
17
+ - 8.4
18
+ - 8.3
17
19
- 8.2
18
20
- 8.1
19
21
- 8.0
36
38
extensions : sqlite3
37
39
coverage : xdebug
38
40
ini-file : development
39
- # disable JIT on PHP 8.2 with Xdebug: JIT is incompatible with third party extensions that override zend_execute_ex(). JIT disabled.
40
- ini-values : ${{ matrix.php = = 8.2 && 'opcache.jit_buffer_size=0' || '' }}
41
+ # disable JIT on PHP 8.2+ with Xdebug: JIT is incompatible with third party extensions that override zend_execute_ex(). JIT disabled.
42
+ ini-values : ${{ matrix.php > = 8.2 && 'opcache.jit_buffer_size=0' || '' }}
41
43
- run : composer install
42
44
- run : vendor/bin/phpunit --coverage-text --coverage-clover=clover.xml
43
45
if : ${{ matrix.php >= 7.3 }}
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public function testOpenReturnsPromiseWhichFulfillsWithConnectionForMemoryPathAn
52
52
public function testOpenReturnsPromiseWhichRejectsWithExceptionWhenPathIsInvalid ()
53
53
{
54
54
$ factory = new Factory ();
55
- $ promise = $ factory ->open ('/dev/foobar ' );
55
+ $ promise = $ factory ->open ('/dev/foo/bar ' );
56
56
57
57
$ promise ->then (function (DatabaseInterface $ db ) {
58
58
echo 'open. ' ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ public function testCtorThrowsForInvalidPath()
15
15
// legacy PHPUnit
16
16
$ this ->setExpectedException ('Exception ' );
17
17
}
18
- new BlockingDatabase ('/dev/foobar ' );
18
+ new BlockingDatabase ('/dev/foo/bar ' );
19
19
}
20
20
21
21
public function testExecReturnsRejectedPromiseForInvalidQuery ()
You can’t perform that action at this time.
0 commit comments