Welcome to mirror list, hosted at ThFree Co, Russian Federation.

codeception.yml - github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f687200d726883e4d70e16a59f6e416189ecc5eb (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
actor: Tester
paths:
    tests: tests
    log: tests/_output
    data: tests/_data
    support: tests/_support
    envs: tests/_envs
settings:
    bootstrap: _bootstrap.php
    colors: true
    memory_limit: 1024M
extensions:
    enabled:
        - Codeception\Extension\RunFailed
        - Codeception\Extension\PhpBuiltinServer
    config:
        Codeception\Extension\PhpBuiltinServer:
            hostname: localhost
            port: 8000
            documentRoot: ../..
            startDelay: 1
coverage:
    enabled: true
    include:
        - appinfo/*.php
        - lib/AppInfo/*.php
        - lib/Config/*
        - lib/Controller/*
        - lib/Environment/*
        - lib/Http/*
        - lib/Middleware/*
        - lib/Service/*
    exclude:
        - build/*
        - css/*
        - documentation/*
        - img/*
        - js/*
        - l10n/*
        - templates/*
        - tests/*
        - travis/*
        - vendor/*