From: Tim Otten Date: Sat, 9 Jul 2022 02:21:35 +0000 (-0700) Subject: (NFC) SoapTest - Skip this test on Drupal8+ and Backdrop X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=155146558138bda97c2f450112019cef0fb7559d;p=civicrm-core.git (NFC) SoapTest - Skip this test on Drupal8+ and Backdrop Never passed on D8+. Has been failing for a while on Backdrop. There's a work-a-like extension. No need to monitor results on these configurations. --- diff --git a/tests/phpunit/E2E/Extern/SoapTest.php b/tests/phpunit/E2E/Extern/SoapTest.php index 55a1bd53a3..1a8af4079b 100644 --- a/tests/phpunit/E2E/Extern/SoapTest.php +++ b/tests/phpunit/E2E/Extern/SoapTest.php @@ -34,6 +34,10 @@ class E2E_Extern_SoapTest extends CiviEndToEndTestCase { parent::setUp(); CRM_Core_Config::singleton(1, 1); + if (CIVICRM_UF === 'Drupal8' || CIVICRM_UF === 'Backdrop') { + $this->markTestSkipped('Unsupported environment'); + } + global $_CV; $this->adminUser = $_CV['ADMIN_USER']; $this->adminPass = $_CV['ADMIN_PASS'];