Skip to content
Snippets Groups Projects
Select Git revision
  • 7a7905aa7d9014e25a9342fd76f3bca78cce8087
  • master default protected
  • feat/npm-publish
  • feat/demo-deploy
  • change-demo-deploy
  • remove-smoke
  • feat/acceptance-tests
  • feature/deploy-composer.json
  • feature/mysql-bin-logs
  • skip-codecept-for-libs
  • include-composer-json
  • exclude-wp-assets
  • update_codecept_image
  • fix/silenced-copy
  • remove-free-translations
  • codeception-with-optional-step
  • improve-parallelization
  • linter-exit
  • change-images
  • fix/linter
  • globally-raise-mem-limit
  • no-symlink2
22 results

codeception.yml

Blame
    • Bartek Jaskulski's avatar
      7a7905aa
      fix: skip codeception job for libraries · 7a7905aa
      Bartek Jaskulski authored
      
      Libraries usually don't use codeception acceptance tests. This is
      additionally implied by the misconfiguration of the job: codeception
      test requires `prepare translations`, which is always disabled for
      libraries. At the moment, simply skip any codecept jobs for
      libraries.
      
      Should acceptance tests be introduced to libraries, the whole
      dependency graph of jobs should be redesigned.
      
      Signed-off-by: default avatarBart Jaskulski <bjaskulski@protonmail.com>
      Verified
      7a7905aa
      History
      fix: skip codeception job for libraries
      Bartek Jaskulski authored
      
      Libraries usually don't use codeception acceptance tests. This is
      additionally implied by the misconfiguration of the job: codeception
      test requires `prepare translations`, which is always disabled for
      libraries. At the moment, simply skip any codecept jobs for
      libraries.
      
      Should acceptance tests be introduced to libraries, the whole
      dependency graph of jobs should be redesigned.
      
      Signed-off-by: default avatarBart Jaskulski <bjaskulski@protonmail.com>
    ButtonField.php 212 B
    <?php
    
    namespace WPDesk\Forms\Field;
    
    class ButtonField extends NoValueField {
    
    	public function get_template_name(): string {
    		return 'button';
    	}
    
    	public function get_type(): string {
    		return 'button';
    	}
    }