Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hook_event_dispatcher-3283123
Manage
Activity
Members
Labels
Plan
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Issue forks
hook_event_dispatcher-3283123
Commits
148f626c
Commit
148f626c
authored
2 years ago
by
Luhur Abdi Rizal
Browse files
Options
Downloads
Patches
Plain Diff
Issue
#3261373
by el7cosmos: Clean up phpunit configuration
parent
3d9d87fc
No related branches found
Branches containing commit
Tags
3.0.1
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.travis.yml
+0
-24
0 additions, 24 deletions
.travis.yml
phpunit.autoload.php
+0
-18
0 additions, 18 deletions
phpunit.autoload.php
phpunit.xml
+0
-16
0 additions, 16 deletions
phpunit.xml
with
0 additions
and
58 deletions
.travis.yml
deleted
100644 → 0
+
0
−
24
View file @
3d9d87fc
#
# 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
This diff is collapsed.
Click to expand it.
phpunit.autoload.php
deleted
100644 → 0
+
0
−
18
View file @
3d9d87fc
<?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'
;
This diff is collapsed.
Click to expand it.
phpunit.xml
deleted
100644 → 0
+
0
−
16
View file @
3d9d87fc
<?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>
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment