forked from Bit-Wasp/bitcoin-php
-
Notifications
You must be signed in to change notification settings - Fork 17
/
phpunit.xml
28 lines (26 loc) · 1.11 KB
/
phpunit.xml
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
bootstrap="tests/bootstrap.php"
colors="true">
<testsuites>
<testsuite name="All tests">
<directory>tests/</directory>
<!-- Those tests are currently broken-->
<exclude>./tests/Script/ConsensusTest.php</exclude>
<exclude>./tests/Script/ScriptTest.php</exclude>
<exclude>./tests/Script/Branch/BranchInterpreterTest.php</exclude>
<exclude>./tests/Script/Classifier/OutputClassifierTest.php</exclude>
<exclude>./tests/Script/Interpreter/ScriptTest.php</exclude>
<exclude>./tests/Transaction/TransactionTest.php</exclude>
<exclude>./tests/Transaction/Factory/SignerTest.php</exclude>
<exclude>./tests/Transaction/Factory/ComplexSignerTest.php</exclude>
<exclude>./tests/Key/Deterministic/HierarchicalKeyTest.php</exclude>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory>src</directory>
<exclude>src/PaymentProtocol/Protobufs</exclude>
</whitelist>
</filter>
</phpunit>