-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Drop drupal 10.1 and add drupal 10.4 to the testing matrix. (#78)
* Drop drupal 10.1 and add drupal 10.4 to the testing matrix. * Update phpunit configuration schema. * Remove dump() in test. * Update node 16 actions in CI workflow.
- Loading branch information
Showing
4 changed files
with
63 additions
and
178 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,70 +5,70 @@ | |
https://www.drupal.org/node/2116263 for details. | ||
--> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="tests/bootstrap.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="true" beStrictAboutOutputDuringTests="true" beStrictAboutChangesToGlobalState="true" printerClass="\Drupal\Tests\Listeners\HtmlOutputPrinter" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"> | ||
<php> | ||
<!-- Set error reporting to E_ALL. --> | ||
<ini name="error_reporting" value="32767"/> | ||
<!-- Do not limit the amount of memory tests take to run. --> | ||
<ini name="memory_limit" value="-1"/> | ||
<!-- Example SIMPLETEST_BASE_URL value: http://localhost --> | ||
<env name="SIMPLETEST_BASE_URL" value="http://127.0.0.1:8282"/> | ||
<!-- Example SIMPLETEST_DB value: mysql://username:password@localhost/databasename#table_prefix --> | ||
<env name="SIMPLETEST_DB" value="mysql://drupal:[email protected]/drupal"/> | ||
<!-- Example BROWSERTEST_OUTPUT_DIRECTORY value: /path/to/webroot/sites/simpletest/browser_output --> | ||
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value="../sites/simpletest/browser_output"/> | ||
<!-- To have browsertest output use an alternative base URL. For example if | ||
<coverage> | ||
<include> | ||
<directory>./includes</directory> | ||
<directory>./lib</directory> | ||
<directory>./modules</directory> | ||
<directory>../modules</directory> | ||
<directory>../sites</directory> | ||
</include> | ||
<exclude> | ||
<directory>./modules/*/src/Tests</directory> | ||
<directory>./modules/*/tests</directory> | ||
<directory>../modules/*/src/Tests</directory> | ||
<directory>../modules/*/tests</directory> | ||
<directory>../modules/*/*/src/Tests</directory> | ||
<directory>../modules/*/*/tests</directory> | ||
</exclude> | ||
</coverage> | ||
<php> | ||
<!-- Set error reporting to E_ALL. --> | ||
<ini name="error_reporting" value="32767"/> | ||
<!-- Do not limit the amount of memory tests take to run. --> | ||
<ini name="memory_limit" value="-1"/> | ||
<!-- Example SIMPLETEST_BASE_URL value: http://localhost --> | ||
<env name="SIMPLETEST_BASE_URL" value="http://127.0.0.1:8282"/> | ||
<!-- Example SIMPLETEST_DB value: mysql://username:password@localhost/databasename#table_prefix --> | ||
<env name="SIMPLETEST_DB" value="mysql://drupal:[email protected]/drupal"/> | ||
<!-- Example BROWSERTEST_OUTPUT_DIRECTORY value: /path/to/webroot/sites/simpletest/browser_output --> | ||
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value="../sites/simpletest/browser_output"/> | ||
<!-- To have browsertest output use an alternative base URL. For example if | ||
SIMPLETEST_BASE_URL is an internal DDEV URL, you can set this to the | ||
external DDev URL so you can follow the links directly. | ||
--> | ||
<env name="BROWSERTEST_OUTPUT_BASE_URL" value=""/> | ||
<!-- To disable deprecation testing completely uncomment the next line. --> | ||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> | ||
<!-- Example for changing the driver class for mink tests MINK_DRIVER_CLASS value: 'Drupal\FunctionalJavascriptTests\DrupalSelenium2Driver' --> | ||
<env name="MINK_DRIVER_CLASS" value=""/> | ||
<!-- Example for changing the driver args to mink tests MINK_DRIVER_ARGS value: '["http://127.0.0.1:8510"]' --> | ||
<env name="MINK_DRIVER_ARGS" value=""/> | ||
<!-- Example for changing the driver args to phantomjs tests MINK_DRIVER_ARGS_PHANTOMJS value: '["http://127.0.0.1:8510"]' --> | ||
<env name="MINK_DRIVER_ARGS_PHANTOMJS" value=""/> | ||
<!-- Example for changing the driver args to webdriver tests MINK_DRIVER_ARGS_WEBDRIVER value: '["chrome", { "chromeOptions": { "w3c": false } }, "http://localhost:4444/wd/hub"]' For using the Firefox browser, replace "chrome" with "firefox" --> | ||
<env name="MINK_DRIVER_ARGS_WEBDRIVER" value=""/> | ||
</php> | ||
<testsuites> | ||
<testsuite name="unit"> | ||
<env name="BROWSERTEST_OUTPUT_BASE_URL" value=""/> | ||
<!-- To disable deprecation testing completely uncomment the next line. --> | ||
<env name="SYMFONY_DEPRECATIONS_HELPER" value="disabled"/> | ||
<!-- Example for changing the driver class for mink tests MINK_DRIVER_CLASS value: 'Drupal\FunctionalJavascriptTests\DrupalSelenium2Driver' --> | ||
<env name="MINK_DRIVER_CLASS" value=""/> | ||
<!-- Example for changing the driver args to mink tests MINK_DRIVER_ARGS value: '["http://127.0.0.1:8510"]' --> | ||
<env name="MINK_DRIVER_ARGS" value=""/> | ||
<!-- Example for changing the driver args to phantomjs tests MINK_DRIVER_ARGS_PHANTOMJS value: '["http://127.0.0.1:8510"]' --> | ||
<env name="MINK_DRIVER_ARGS_PHANTOMJS" value=""/> | ||
<!-- Example for changing the driver args to webdriver tests MINK_DRIVER_ARGS_WEBDRIVER value: '["chrome", { "chromeOptions": { "w3c": false } }, "http://localhost:4444/wd/hub"]' For using the Firefox browser, replace "chrome" with "firefox" --> | ||
<env name="MINK_DRIVER_ARGS_WEBDRIVER" value=""/> | ||
</php> | ||
<testsuites> | ||
<testsuite name="unit"> | ||
</testsuite> | ||
<testsuite name="kernel"> | ||
<directory>../modules/contrib/jsonld/tests/src/Kernel</directory> | ||
<testsuite name="kernel"> | ||
<directory>../modules/contrib/jsonld/tests/src/Kernel</directory> | ||
</testsuite> | ||
<testsuite name="functional"> | ||
<directory>../modules/contrib/jsonld/tests/src/Functional</directory> | ||
</testsuite> | ||
<testsuite name="functional-javascript"> | ||
</testsuite> | ||
<testsuite name="functional"> | ||
<directory>../modules/contrib/jsonld/tests/src/Functional</directory> | ||
<testsuite name="build"> | ||
</testsuite> | ||
<testsuite name="functional-javascript"> | ||
</testsuite> | ||
<testsuite name="build"> | ||
</testsuite> | ||
</testsuites> | ||
<listeners> | ||
<listener class="\Drupal\Tests\Listeners\DrupalListener"> | ||
</testsuites> | ||
<listeners> | ||
<listener class="\Drupal\Tests\Listeners\DrupalListener"> | ||
</listener> | ||
<!-- The Symfony deprecation listener has to come after the Drupal listener --> | ||
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"> | ||
<!-- The Symfony deprecation listener has to come after the Drupal listener --> | ||
<listener class="Symfony\Bridge\PhpUnit\SymfonyTestsListener"> | ||
</listener> | ||
</listeners> | ||
<!-- Filter for coverage reports. --> | ||
<filter> | ||
<whitelist> | ||
<directory>./includes</directory> | ||
<directory>./lib</directory> | ||
<directory>./modules</directory> | ||
<directory>../modules</directory> | ||
<directory>../sites</directory> | ||
<exclude> | ||
<directory>./modules/*/src/Tests</directory> | ||
<directory>./modules/*/tests</directory> | ||
<directory>../modules/*/src/Tests</directory> | ||
<directory>../modules/*/tests</directory> | ||
<directory>../modules/*/*/src/Tests</directory> | ||
<directory>../modules/*/*/tests</directory> | ||
</exclude> | ||
</whitelist> | ||
</filter> | ||
</phpunit> | ||
</listeners> | ||
<!-- Filter for coverage reports. --> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters