Advertisement
dgwatkins

codeception.yml

Feb 7th, 2018
304
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.62 KB | None | 0 0
  1. actor: Tester
  2. paths:
  3.     tests: codeception
  4.     log: codeception/_output
  5.     data: codeception/_data
  6.     support: codeception/_support
  7.     envs: codeception/_envs
  8. settings:
  9.     bootstrap: _bootstrap.php
  10.     colors: true
  11.     memory_limit: 1024M
  12. modules:
  13.     enabled:
  14.        - \Helper\Acceptance
  15.         - WPWebDriver
  16.         - Asserts
  17.         - Cli
  18.         - Filesystem
  19.         - WPCliDb
  20.         - CheckDebugLog
  21.         - WPDb
  22.         - WPLoad
  23.         - WPCLI
  24.     config:
  25.         WPWebDriver:
  26.             url: 'http://web'
  27.             adminUsername: 'admin'
  28.             adminPassword: '1'
  29.             adminPath: '/wp-admin/'
  30.             log_js_errors: true
  31.             restart: true
  32.         WPCliDb:
  33.             dump: codeception/_data/dump.sql
  34.             cleandump: codeception/_data/cleandb.sql
  35.             dump1: codeception/_data/german-default.sql
  36.             dump2: codeception/_data/german-default-no-english.sql
  37.             oldUrl: 'http://wpbeta.dev'
  38.             newUrl: 'http://web'
  39.         WPDb:
  40.             dsn: 'mysql:host=mysql;dbname=wordpress'
  41.             user: 'root'
  42.             password: 'password'
  43.             dump: codeception/_data/dump.sql
  44.             populate: false
  45.             cleanup: false
  46.             reconnect: false
  47.             url: 'http://web'
  48.             urlReplacement: false
  49.             tablePrefix: 'wp_'
  50.         CheckDebugLog:
  51.             debug: false
  52.             debugLog: false
  53.         WPCLI:
  54.             path: /var/www/html
  55.             throw: true
  56.         WPLoad:
  57.             path: 'wp-load.php'
  58. extensions:
  59.     enabled: [Codeception\Extension\RunFailed]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement