-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* develop: (24 commits) Fixes #6 Code style fixes. Issue #6: Fix too many arguments error. Exclude tests form codeclimate checks. Revert "Update PHPUnit version", we need to support PHP 5.5 blacklist element not needed (and no longer present) Update PHPUnit version Let's remove some cruft Add PHPUnit.xml file to steer code coverage report Token in command, will it work? Output file should be what codeclimate expects Add repo token in after_success script Trailing spaces Markdown: 80 for line length Fix code violations in loadTasks.php Fix (most) code violations in DrupalConsoleStack.php Fix README code violations (line length 100) Fix (some) code violations on DrupalConsoleStackTest.php Fix RoboFile.php code violations Fix README.md code violations ...
- Loading branch information
Showing
10 changed files
with
127 additions
and
48 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
engines: | ||
phpcodesniffer: | ||
enabled: true | ||
config: | ||
standard: "PSR1,PSR2" | ||
phpmd: | ||
enabled: true | ||
duplication: | ||
enabled: true | ||
config: | ||
languages: | ||
php: | ||
fixme: | ||
enabled: true | ||
markdownlint: | ||
enabled: true | ||
ratings: | ||
paths: | ||
- "**.php" | ||
- "**.md" | ||
exclude_paths: | ||
- "**/vendor/**/*" | ||
- "**/.idea/**/*" | ||
- "tests/" |
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,3 +1,4 @@ | ||
/vendor | ||
composer.lock | ||
/build | ||
/coverage.clover |
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
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.1/phpunit.xsd" | ||
> | ||
<testsuites> | ||
<testsuite name="robo-drupal-console tests"> | ||
<directory>./tests</directory> | ||
</testsuite> | ||
</testsuites> | ||
<filter> | ||
<whitelist processUncoveredFilesFromWhitelist="true"> | ||
<directory suffix=".php">./src</directory> | ||
</whitelist> | ||
</filter> | ||
<logging> | ||
<log type="coverage-clover" target="build/logs/clover.xml"/> | ||
</logging> | ||
</phpunit> |
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
Oops, something went wrong.