Skip to content

Commit f45a837

Browse files
author
dmitriy
committed
fixed error in report-code-coverage
1 parent 6ed3621 commit f45a837

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ phpunit:
138138

139139
###> php-coveralls ###
140140
report-code-coverage: ## update code coverage on coveralls.io. Note: COVERALLS_REPO_TOKEN should be set on CI side.
141-
@make exec cmd="./vendor/bin/php-coveralls --coverage_clover=reports/clover.xml --json_path=reports/coverals.json"
141+
@make exec cmd="export COVERALLS_REPO_TOKEN=${COVERALLS_REPO_TOKEN} && php ./vendor/bin/php-coveralls -v --coverage_clover reports/clover.xml --json_path reports/coverals.json"
142142
###< php-coveralls ###
143143

144144
###> phpcs ###

phpunit.xml.dist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
<directory suffix="Test.php">./tests/Unit</directory>
3131
</testsuite>
3232

33-
<testsuite name="Feature">
34-
<directory suffix="Test.php">./tests/Feature</directory>
33+
<testsuite name="Functional">
34+
<directory suffix="Test.php">./tests/Functional</directory>
3535
</testsuite>
3636
</testsuites>
3737
<filter>

0 commit comments

Comments
 (0)