-
-
Notifications
You must be signed in to change notification settings - Fork 398
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add Laravel 11 support * add 8.2 and 8.3 tests * format * check if env is available * check if env is available * latest * use 8.3 for codeclimate run * only run code coverage report on master * only run code coverage report on master * fix coveralls report path --------- Co-authored-by: pataar <[email protected]> Co-authored-by: Darius Matulionis <[email protected]>
- Loading branch information
1 parent
96fcc40
commit 76ce7aa
Showing
4 changed files
with
36 additions
and
33 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,28 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.0/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
stopOnFailure="false" | ||
cacheDirectory=".phpunit.cache" | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/11.0/phpunit.xsd" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
stopOnFailure="false" | ||
cacheDirectory=".phpunit.cache" | ||
> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
</include> | ||
<report> | ||
<clover outputFile="tests/storage/logs/test-reports/clover.xml"/> | ||
<html outputDirectory="tests/storage/logs/test-reports" lowUpperBound="50" highLowerBound="80"/> | ||
</report> | ||
</coverage> | ||
<testsuite name="L5-Swagger TestSuite"> | ||
<directory>tests/</directory> | ||
</testsuite> | ||
<logging/> | ||
<php> | ||
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/> | ||
<env name="SWAGGER_VERSION" value="3.0"/> | ||
</php> | ||
<coverage> | ||
<report> | ||
<clover outputFile="tests/storage/logs/test-reports/clover.xml"/> | ||
<html outputDirectory="tests/storage/logs/test-reports" lowUpperBound="50" highLowerBound="80"/> | ||
</report> | ||
</coverage> | ||
<testsuite name="L5-Swagger TestSuite"> | ||
<directory>tests/</directory> | ||
</testsuite> | ||
<logging/> | ||
<php> | ||
<env name="APP_KEY" value="AckfSECXIvnK5r28GVIWUAxmbBSjTsmF"/> | ||
<env name="SWAGGER_VERSION" value="3.0"/> | ||
</php> | ||
<source> | ||
<include> | ||
<directory suffix=".php">src/</directory> | ||
</include> | ||
</source> | ||
</phpunit> |