-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(chore): SK20292: update phpunit + add query_args
- Loading branch information
Edwin Siebel
committed
Aug 2, 2019
1 parent
6094991
commit 3b94720
Showing
40 changed files
with
1,774 additions
and
1,079 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 |
---|---|---|
|
@@ -97,3 +97,8 @@ vendor | |
|
||
tests/coverage | ||
wp-content/ | ||
|
||
.DS_Store | ||
|
||
# php cs | ||
.php_cs.cache |
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 |
---|---|---|
|
@@ -22,4 +22,4 @@ public function __construct() | |
} | ||
}); | ||
} | ||
} | ||
} |
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,35 @@ | ||
image: oktupol/bitbucket-pipelines-php71 | ||
image: yardinternet/php7.2-composer | ||
|
||
pipelines: | ||
custom: | ||
manually: | ||
- step: | ||
name: unit test | ||
caches: | ||
- composer | ||
- vendor-directory | ||
script: | ||
- composer install --no-interaction --no-progress --prefer-dist --ignore-platform-reqs | ||
- ./vendor/bin/phpunit --testsuite "Unit Test Suite" | ||
branches: | ||
master: | ||
- step: | ||
name: unit test | ||
caches: | ||
- composer | ||
- vendor-directory | ||
script: | ||
- apt-get update && apt-get install -y git openssh-server | ||
- composer install --no-interaction --no-progress --prefer-dist --ignore-platform-reqs | ||
- ./vendor/bin/phpunit --testsuite "Unit Test Suite" | ||
- step: | ||
name: Deploy docs to production | ||
caches: | ||
- composer | ||
- vendor-directory | ||
deployment: production | ||
script: | ||
- apt-get update && apt-get install -y git openssh-server rsync | ||
- composer docs | ||
- ssh [email protected] mkdir -p /data/www/docs.openwebconcept.nl/htdocs/plugins/openpub && rsync -avH ./docs/* -e "ssh" [email protected]:/data/www/docs.openwebconcept.nl/htdocs/plugins/openpub | ||
"{master,develop}": | ||
- step: | ||
name: unit test | ||
caches: | ||
- composer | ||
- vendor-directory | ||
script: | ||
- composer install --no-interaction --no-progress --prefer-dist --ignore-platform-reqs | ||
- ./vendor/bin/phpunit --testsuite "Unit Test Suite" | ||
- step: | ||
name: Deploy docs to production | ||
caches: | ||
- composer | ||
- vendor-directory | ||
deployment: production | ||
script: | ||
- apt-get update && apt-get install -y rsync | ||
- ssh [email protected] mkdir -p /data/www/docs.openwebconcept.nl/htdocs/plugins/openpub && rsync -avH ./docs/* -e "ssh" [email protected]:/data/www/docs.openwebconcept.nl/htdocs/plugins/openpub | ||
|
||
definitions: | ||
caches: | ||
|
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.