Skip to content

Commit 8976bba

Browse files
committed
Merge branch 'release/1.8.0'
2 parents 4839bfd + 1e8d79f commit 8976bba

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
All Notable changes to the **Quality Assurance - Drupal** package.
44

5+
## [1.8.0]
6+
7+
### Added
8+
9+
- Add excluding hand-crafted mocks from coverage reports. This will exclude
10+
file names ending with Stub.php or Spy.php.
11+
512
## [1.7.3]
613

714
### Added
@@ -339,6 +346,7 @@ Initial setup of the qa-drupal package:
339346
- Default config files and checks for a Drupal site.
340347
- Default config files and checks for a Drupal module.
341348

349+
[1.8.0]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.7.3...1.8.0
342350
[1.7.3]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.7.2...1.7.3
343351
[1.7.2]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.7.1...1.7.2
344352
[1.7.1]: https://github.com/digipolisgent/php_package_qa-drupal/compare/1.7.0...1.7.1

configs/phpunit-extension.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@
4242
<exclude>
4343
<directory>./vendor</directory>
4444
<directory suffix=".api.php">./</directory>
45+
<directory suffix="Spy.php">./</directory>
46+
<directory suffix="Stub.php">./</directory>
4547
<directory suffix="Test.php">./</directory>
4648
<directory suffix="TestBase.php">./</directory>
4749
<directory suffix="TestCase.php">./</directory>

configs/phpunit-site.xml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@
4343
<directory suffix=".php">web/themes/custom</directory>
4444
<exclude>
4545
<directory suffix=".api.php">./</directory>
46+
<directory suffix="Spy.php">./</directory>
47+
<directory suffix="Stub.php">./</directory>
4648
<directory suffix="Test.php">./</directory>
4749
<directory suffix="TestBase.php">./</directory>
4850
<directory suffix="TestCase.php">./</directory>

0 commit comments

Comments
 (0)