Loading drupalci.ymldeleted 100644 → 0 +0 −36 Original line number Diff line number Diff line # This is the DrupalCI testbot build file for JSON:API Hypermedia. # Learn to make one for your own drupal.org project: # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing build: assessment: validate_codebase: phplint: # Re-run composer install to ensure the dependencies resolve for the # containerized PHP version. container_composer: options: ' install --prefer-dist --no-suggest --no-progress --no-interaction' halt-on-fail: true phpcs: # phpcs will use core's specified version of Coder. sniff-all-files: true halt-on-fail: true testing: # run_tests task is executed several times in order of performance speeds. # halt-on-fail can be set on the run_tests tasks in order to fail fast. # suppress-deprecations is false in order to be alerted to usages of # deprecated code. run_tests.phpunit: types: 'PHPUnit-Unit' testgroups: '--all' suppress-deprecations: false halt-on-fail: false run_tests.kernel: types: 'PHPUnit-Kernel' testgroups: '--all' suppress-deprecations: false halt-on-fail: false run_tests.functional: types: 'PHPUnit-Functional' testgroups: '--all' suppress-deprecations: false halt-on-fail: false tests/src/Functional/LinkProviderTest.php +1 −1 Original line number Diff line number Diff line <?php namespace Drupal\Testes\jsonapi_hypermedia\Functional; namespace Drupal\Tests\jsonapi_hypermedia\Functional; use Drupal\Component\Serialization\Json; use Drupal\Component\Utility\NestedArray; Loading Loading
drupalci.ymldeleted 100644 → 0 +0 −36 Original line number Diff line number Diff line # This is the DrupalCI testbot build file for JSON:API Hypermedia. # Learn to make one for your own drupal.org project: # https://www.drupal.org/drupalorg/docs/drupal-ci/customizing-drupalci-testing build: assessment: validate_codebase: phplint: # Re-run composer install to ensure the dependencies resolve for the # containerized PHP version. container_composer: options: ' install --prefer-dist --no-suggest --no-progress --no-interaction' halt-on-fail: true phpcs: # phpcs will use core's specified version of Coder. sniff-all-files: true halt-on-fail: true testing: # run_tests task is executed several times in order of performance speeds. # halt-on-fail can be set on the run_tests tasks in order to fail fast. # suppress-deprecations is false in order to be alerted to usages of # deprecated code. run_tests.phpunit: types: 'PHPUnit-Unit' testgroups: '--all' suppress-deprecations: false halt-on-fail: false run_tests.kernel: types: 'PHPUnit-Kernel' testgroups: '--all' suppress-deprecations: false halt-on-fail: false run_tests.functional: types: 'PHPUnit-Functional' testgroups: '--all' suppress-deprecations: false halt-on-fail: false
tests/src/Functional/LinkProviderTest.php +1 −1 Original line number Diff line number Diff line <?php namespace Drupal\Testes\jsonapi_hypermedia\Functional; namespace Drupal\Tests\jsonapi_hypermedia\Functional; use Drupal\Component\Serialization\Json; use Drupal\Component\Utility\NestedArray; Loading