Test Failed
Push — master ( e8b070...b526e1 )
by Oleksandr
33:34 queued 26:33
created

tabpy.tabpy_server.app.SettingsParameters   A

Complexity

Total Complexity 0

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 0
eloc 14
dl 0
loc 18
ccs 13
cts 13
cp 1
rs 10
c 0
b 0
f 0
1 1
class SettingsParameters:
2
    """
3
    Application (TabPyApp) settings names
4
    """
5
6 1
    TransferProtocol = "transfer_protocol"
7 1
    Port = "port"
8 1
    ServerVersion = "server_version"
9 1
    UploadDir = "upload_dir"
10 1
    CertificateFile = "certificate_file"
11 1
    KeyFile = "key_file"
12 1
    StateFilePath = "state_file_path"
13 1
    ApiVersions = "versions"
14 1
    LogRequestContext = "log_request_context"
15 1
    StaticPath = "static_path"
16 1
    MaxRequestSizeInMb = "max_request_size_in_mb"
17
    EvaluateTimeout = "evaluate_timeout"
18