Skip to content
Snippets Groups Projects
Commit 148f626c authored by Luhur Abdi Rizal's avatar Luhur Abdi Rizal
Browse files

Issue #3261373 by el7cosmos: Clean up phpunit configuration

parent 3d9d87fc
No related branches found
Tags 3.0.1
No related merge requests found
#
# Travis CI
#
language: php
php:
- 7.3
- 7.4
- 8.0
cache:
directories:
- ~/.composer
install:
- COMPOSER_MEMORY_LIMIT=-1 composer install --ignore-platform-reqs
script:
- composer ci
- composer validate
branches:
only:
- 8.x-2.x
<?php
/**
* @file
* PHPUnit autoload.
*/
require __DIR__ . '/vendor/autoload.php';
require __DIR__ . '/hook_event_dispatcher.module';
require __DIR__ . '/modules/core_event_dispatcher/core_event_dispatcher.module';
require __DIR__ . '/modules/field_event_dispatcher/field_event_dispatcher.module';
require __DIR__ . '/modules/media_event_dispatcher/media_event_dispatcher.module';
require __DIR__ . '/modules/path_event_dispatcher/path_event_dispatcher.module';
require __DIR__ . '/modules/preprocess_event_dispatcher/preprocess_event_dispatcher.module';
require __DIR__ . '/modules/toolbar_event_dispatcher/toolbar_event_dispatcher.module';
require __DIR__ . '/modules/user_event_dispatcher/user_event_dispatcher.module';
require __DIR__ . '/modules/views_event_dispatcher/views_event_dispatcher.module';
require __DIR__ . '/modules/webform_event_dispatcher/webform_event_dispatcher.module';
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
colors="true" bootstrap="phpunit.autoload.php">
<testsuites>
<testsuite name="Test Suite">
<directory>tests/src/</directory>
<directory>modules/*/tests/src</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory>src/</directory>
</include>
</coverage>
</phpunit>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment