This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from elvetemedve/feature/add-parameter-support-…
…for-secondary-behat Amend the process factory to be able to set parameters for the secondary behat
- Loading branch information
Showing
5 changed files
with
99 additions
and
13 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 |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
/vendor | ||
|
||
# Composer installed package cache | ||
/.composer.lock | ||
/composer.lock |
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,55 @@ | ||
checks: | ||
php: true | ||
|
||
tools: | ||
external_code_coverage: false | ||
php_code_coverage: false | ||
php_code_sniffer: | ||
config: { standard: 'Zend' } | ||
php_changetracking: false | ||
php_sim: false | ||
php_cs_fixer: true | ||
php_mess_detector: true | ||
php_pdepend: true | ||
php_analyzer: true | ||
sensiolabs_security_checker: true | ||
|
||
filter: | ||
paths: | ||
- 'src/*' | ||
excluded_paths: | ||
- 'features/bootstrap/*' | ||
- 'dev/*' | ||
- 'var/*' | ||
- 'lib/*' | ||
- 'bin/*' | ||
- 'vendor/*' | ||
|
||
build: | ||
environment: | ||
php: | ||
version: 5.4 | ||
ini: | ||
'always_populate_raw_post_data': '-1' | ||
|
||
tests: | ||
override: | ||
- bin/phpspec run --no-interaction --format=pretty | ||
after: | ||
- SCRUTINIZER_START_TIME=$(cat /tmp/build-start-time.txt) sh -c 'curl -sS https://gist.githubusercontent.com/tonypiper/fd3cf9a67b71d4e3928c/raw/152f1d873f98ff4256ca8bc3041443eae7c890b4/keenio-logger.php | php' | ||
|
||
dependencies: | ||
before: | ||
- date -u +"%Y-%m-%dT%H:%M:%SZ" > /tmp/build-start-time.txt | ||
|
||
override: | ||
- { command: 'composer update --no-interaction --prefer-source', idle_timeout: 600 } | ||
|
||
cache: | ||
directories: [ vendor/, bin/ ] | ||
|
||
build_failure_conditions: | ||
- 'elements.rating(<= B).new.exists' | ||
- 'issues.label("coding-style").new.exists' | ||
- 'issues.new.exists' | ||
- 'project.metric("scrutinizer.quality", < 9.00)' |
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