Skip to content
Snippets Groups Projects
Commit 571828af authored by Sascha Grossenbacher's avatar Sascha Grossenbacher
Browse files

Issue #3486454 by berdir: Update CI configuration

parent b296d2d9
No related branches found
No related tags found
1 merge request!156update CI configuration for D11
Pipeline #333850 passed with warnings
......@@ -49,25 +49,23 @@ include:
# Docs at https://git.drupalcode.org/project/gitlab_templates/-/blob/1.0.x/includes/include.drupalci.variables.yml
################
variables:
KUBERNETES_CPU_REQUEST: "5"
_CONCURRENCY_THREADS: 20
KUBERNETES_CPU_REQUEST: "8"
_CONCURRENCY_THREADS: 16
_PHPUNIT_CONCURRENT: '1'
OPT_IN_TEST_PREVIOUS_MAJOR: 1
OPT_IN_TEST_PREVIOUS_MINOR: 1
# Previous minor defaults to the last security release, currently 10.2.2.
# Override that to 10.2.7 to avoid MigrateSourceTestBase::providerSource()
# related errors.
composer (previous minor):
variables:
DRUPAL_CORE: 10.2.7
composer (next major):
composer:
variables:
_LENIENT_ALLOW_LIST: "inline_entity_form"
phpunit (next major):
phpunit:
before_script:
- 'sed -i "s/core_version_requirement.*/core_version_requirement: \^10 || ^11/" web/modules/contrib/**/*.info.yml'
phpcs:
before_script:
- 'sed -i "s/core_version_requirement.*/core_version_requirement: \^11/" web/modules/contrib/**/*.info.yml'
- cp $_WEB_ROOT/core/phpcs.xml.dist ./core.phpcs.xml.dist
###################################################################################
#
......
......@@ -22,6 +22,11 @@ class ParagraphsInlineEntityFormTest extends ParagraphsTestBase {
* Tests the revision of paragraphs.
*/
public function testParagraphsIEFPreview() {
if (version_compare(\Drupal::VERSION, '11', '>=')) {
$this->markTestSkipped('IEF is not yet D11 compatible');
}
// Create article content type with a paragraphs field.
$this->addParagraphedContentType('article', 'field_paragraphs', 'entity_reference_paragraphs');
$this->loginAsAdmin(['create article content', 'edit any article content']);
......@@ -74,6 +79,10 @@ class ParagraphsInlineEntityFormTest extends ParagraphsTestBase {
*/
public function testParagraphsIEFChangeOrder() {
if (version_compare(\Drupal::VERSION, '11', '>=')) {
$this->markTestSkipped('IEF is not yet D11 compatible');
}
// Create article content type with a paragraphs field.
$this->addParagraphedContentType('article', 'field_paragraphs', 'entity_reference_paragraphs');
$this->loginAsAdmin(['create article content', 'edit any article content']);
......
......@@ -26,6 +26,11 @@ class ParagraphsInlineEntityFormTest extends ParagraphsTestBase {
* Tests the revision of paragraphs.
*/
public function testParagraphsIEFPreview() {
if (version_compare(\Drupal::VERSION, '11', '>=')) {
$this->markTestSkipped('IEF is not yet D11 compatible');
}
// Create article content type with a paragraphs field.
$this->addParagraphedContentType('article');
$this->loginAsAdmin(['create article content', 'edit any article content']);
......@@ -82,6 +87,11 @@ class ParagraphsInlineEntityFormTest extends ParagraphsTestBase {
* Tests the reordering of previewed paragraphs.
*/
public function testParagraphsIEFChangeOrder() {
if (version_compare(\Drupal::VERSION, '11', '>=')) {
$this->markTestSkipped('IEF is not yet D11 compatible');
}
// Create article content type with a paragraphs field.
$this->addParagraphedContentType('article');
$this->loginAsAdmin(['create article content', 'edit any article content']);
......
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