-
-
Save zilionis/38dbc8eda0e50f7e74db to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| build_settings: | |
| ignore: | |
| - "vendor" | |
| - "tests" | |
| setup: | |
| composer: | |
| action: "install" | |
| shell: | |
| - "%BUILD_PATH%/app/console doctrine:schema:drop --force" | |
| - "%BUILD_PATH%/app/console doctrine:schema:create" | |
| - "%BUILD_PATH%/app/console doctrine:fixtures:load -n" | |
| test: | |
| php_unit: | |
| config: | |
| - "app/phpunit.xml.dist" | |
| php_code_sniffer: | |
| path: "src" | |
| standard: "PSR1,PSR2" | |
| allowed_errors: 10 | |
| allow_warnings: 99999 | |
| php_mess_detector: | |
| rules: | |
| - "codesize" | |
| - "unusedcode" | |
| - "naming" | |
| allow_failures: true | |
| complete: | |
| shell: | |
| - "%BUILD_PATH%/app/console doctrine:schema:drop --force" | |
| - "%BUILD_PATH%/app/console doctrine:schema:create" | |
| - "%BUILD_PATH%/app/console doctrine:fixtures:load -n" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment