File: mssql.sql2017.pdo_sqlsrv.appveyor.xml

package info (click to toggle)
php-doctrine-dbal 4.2.3%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 4,644 kB
  • sloc: php: 46,471; xml: 460; makefile: 22
file content (28 lines) | stat: -rw-r--r-- 871 bytes parent folder | download
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
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="../../vendor/phpunit/phpunit/phpunit.xsd"
         colors="true"
         beStrictAboutOutputDuringTests="true"
         failOnRisky="true"
         failOnWarning="true"
>
    <php>
        <var name="db_driver" value="pdo_sqlsrv"/>
        <var name="db_host" value="(local)\SQL2017" />
        <var name="db_user" value="sa" />
        <var name="db_password" value="Password12!" />
        <var name="db_dbname" value="doctrine_tests" />
    </php>

    <testsuites>
        <testsuite name="Doctrine DBAL Test Suite">
            <directory>../../tests</directory>
        </testsuite>
    </testsuites>

    <source>
        <include>
            <directory>../../src</directory>
        </include>
    </source>
</phpunit>