File: 0010-Exclude-Mocks-folder-from-tests.patch

package info (click to toggle)
php-slim 3.12.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,396 kB
  • sloc: php: 11,581; makefile: 18; xml: 10; sh: 3
file content (20 lines) | stat: -rw-r--r-- 525 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
From: James Valleroy <jvalleroy@mailbox.org>
Date: Mon, 18 Nov 2024 19:22:39 -0500
Subject: Exclude Mocks folder from tests

---
 phpunit.xml.dist | 1 +
 1 file changed, 1 insertion(+)

diff --git a/phpunit.xml.dist b/phpunit.xml.dist
index 3fb4fd9..fb1b03c 100644
--- a/phpunit.xml.dist
+++ b/phpunit.xml.dist
@@ -18,6 +18,7 @@
     <testsuites>
         <testsuite name="Slim Test Suite">
             <directory>./tests/</directory>
+            <exclude>./tests/Mocks</exclude>
         </testsuite>
     </testsuites>