No flags found
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
09b13df
... +0 ...
5f1c28d
Use flags to group coverage reports by test type, project and/or folders.
Then setup custom commit statuses and notifications for each flag.
e.g., #unittest #integration
#production #enterprise
#frontend #backend
15 | 15 | { |
|
16 | 16 | $token = getenv('GITHUB_TOKEN'); |
|
17 | 17 | ||
18 | - | return shell_exec('curl -s '. |
|
19 | - | '-H "Accept: application/vnd.github.antiope-preview+json" '. |
|
20 | - | (empty($token) ? '' : '-H "Authorization: token '.$token.'" '). |
|
18 | + | return shell_exec( |
|
19 | + | 'curl -s ' . |
|
20 | + | '-H "Accept: application/vnd.github.antiope-preview+json" ' . |
|
21 | + | (empty($token) ? '' : '-H "Authorization: token ' . $token . '" ') . |
|
21 | 22 | "https://api.github.com/repos/{$this->repo}/commits$url" |
|
22 | 23 | ); |
|
23 | 24 | } |
27 | 27 | { |
|
28 | 28 | return $this->config['color_support'] ?? |
|
29 | 29 | // @codeCoverageIgnoreStart |
|
30 | - | (DIRECTORY_SEPARATOR === '\\' |
|
30 | + | ( |
|
31 | + | DIRECTORY_SEPARATOR === '\\' |
|
31 | 32 | ? false !== getenv('ANSICON') || |
|
32 | 33 | 'ON' === getenv('ConEmuANSI') || |
|
33 | 34 | false !== getenv('BABUN_HOME') |
Files | Complexity | Coverage |
---|---|---|
src/MultiTester | ø | 93.29% |
Project Totals (13 files) | 206 | 93.29% |
5f1c28d
09b13df