(NFC) SoapTest - Skip this test on Drupal8+ and Backdrop
authorTim Otten <totten@civicrm.org>
Sat, 9 Jul 2022 02:21:35 +0000 (19:21 -0700)
committerTim Otten <totten@civicrm.org>
Sat, 9 Jul 2022 02:21:35 +0000 (19:21 -0700)
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

index 55a1bd53a3e4bbe38d948f4951de34c409870543..1a8af4079b878e221739be8a9832aeea154c93b9 100644 (file)
@@ -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'];