FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
kayak_python/phpunit.xml at main · mousebrains/kayak_python · GitHub
mousebrains
/
kayak_python
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
4
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
kayak_python
/
phpunit.xml
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (31 loc) · 1.26 KB
Breadcrumbs
kayak_python
/
phpunit.xml
Copy path
File metadata and controls
31 lines (31 loc) · 1.26 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?
xml
version
=
"
1.0
"
encoding
=
"
UTF-8
"
?>
<
phpunit
xmlns
:
xsi
=
"
http://www.w3.org/2001/XMLSchema-instance
"
xsi
:
noNamespaceSchemaLocation
=
"
vendor/phpunit/phpunit/phpunit.xsd
"
bootstrap
=
"
tests/php/bootstrap.php
"
cacheDirectory
=
"
.phpunit.cache
"
executionOrder
=
"
depends,defects
"
beStrictAboutOutputDuringTests
=
"
true
"
failOnWarning
=
"
true
"
failOnRisky
=
"
true
"
colors
=
"
true
"
>
<
testsuites
>
<
testsuite
name
=
"
php
"
>
<
directory
>tests/php</
directory
>
</
testsuite
>
</
testsuites
>
<
source
>
<
include
>
<
directory
suffix
=
"
.php
"
>src/kayak/web/php</
directory
>
</
include
>
<
exclude
>
<!--
db.php does side-effectful PDO init at load time.
-->
<
file
>src/kayak/web/php/includes/db.php</
file
>
</
exclude
>
</
source
>
<!--
pcov is a line-only driver (no path coverage). T2.7 sets pcov as
the engine via shivammathur/setup-php; PHPUnit 11.x picks it up
automatically once a driver is present, but specifying the
<coverage> block is the documented shape and avoids the "no
coverage configuration found" silent-fallback path.
-->
<
coverage
pathCoverage
=
"
false
"
includeUncoveredFiles
=
"
true
"
/>
</
phpunit
>
Back
|
FazBrowse Home
|
New Git URL