Skip to content

Commit

Permalink
Move coverage reports from root
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-lmi authored and nekufa committed Jul 21, 2022
1 parent f6cb109 commit 921d545
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ jobs:
extensions: xdebug
tools: phpunit, composer:v2
- run: composer install
- run: vendor/bin/phpunit tests
- run: cat ./coverage.txt
- run: vendor/bin/phpunit --testsuite Tests
- run: cat ./coverage/report.txt
2 changes: 2 additions & 0 deletions coverage/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!.gitignore
4 changes: 2 additions & 2 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
<directory>src</directory>
</include>
<report>
<clover outputFile="coverage.clover"/>
<text outputFile="coverage.txt"/>
<clover outputFile="coverage/report.clover"/>
<text outputFile="coverage/report.txt"/>
</report>
</coverage>
<php>
Expand Down

0 comments on commit 921d545

Please sign in to comment.