Skip to content

Commit 36a390b

Browse files
meyerbaptisteNightbr
authored andcommitted
Fix JS CS
1 parent dbfdf85 commit 36a390b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

brigade.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,17 @@ const coverage = (event, project) => {
99
'set -xe',
1010
'cd /src/',
1111
'mkdir -p build/logs build/cov',
12-
'composer require --dev --no-update \'phpunit/php-code-coverage:^5.2.2\'',
12+
`composer require --dev --no-update 'phpunit/php-code-coverage:^5.2.2'`,
1313
'composer update --prefer-dist --no-progress --no-suggest --ansi',
1414
'phpdbg -qrr vendor/bin/phpunit --coverage-php build/cov/coverage-phpunit.cov',
15-
'for f in $(find features -name \'*.feature\'); do FEATURE=${f//\\//_} phpdbg -qrr vendor/bin/behat --format=progress --profile coverage $f || exit $?; done',
15+
`for f in $(find features -name '*.feature'); do FEATURE=\${f//\\//_} phpdbg -qrr vendor/bin/behat --format=progress --profile coverage $f || exit $?; done`,
1616
'phpdbg -qrr $(which phpcov) merge --clover build/logs/clover.xml build/cov;',
1717
'coveralls -v',
1818
];
1919

2020
job.env = {
21-
'COVERALLS_RUN_LOCALLY': '1',
22-
'COVERALLS_REPO_TOKEN': project.secrets.coverallsToken,
21+
COVERALLS_RUN_LOCALLY: '1',
22+
COVERALLS_REPO_TOKEN: project.secrets.coverallsToken,
2323
};
2424

2525
job.run();

0 commit comments

Comments
 (0)