Blame view

basic2/codeception.yml 574 Bytes
2fe1e5ce8   Андрей Ларионов   Первый коммит на ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  actor: Tester
  bootstrap: _bootstrap.php
  paths:
      tests: tests
      output: tests/_output
      data: tests/_data
      helpers: tests/_support
  settings:
      memory_limit: 1024M
      colors: true
  modules:
      config:
          Yii2:
              configFile: 'config/test.php'
  
  # To enable code coverage:
  #coverage:
  #    #c3_url: http://localhost:8080/index-test.php/
  #    enabled: true
  #    #remote: true
  #    #remote_config: '../codeception.yml'
  #    whitelist:
  #        include:
  #            - models/*
  #            - controllers/*
  #            - commands/*
  #            - mail/*