From 155146558138bda97c2f450112019cef0fb7559d Mon Sep 17 00:00:00 2001 From: Tim Otten Date: Fri, 8 Jul 2022 19:21:35 -0700 Subject: [PATCH] (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. --- tests/phpunit/E2E/Extern/SoapTest.php | 4 ++++ 1 file changed, 4 insertions(+) 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']; -- 2.25.1