-
Notifications
You must be signed in to change notification settings - Fork 21
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 #8 from mageplaza/develop
Develop
- Loading branch information
Showing
30 changed files
with
928 additions
and
821 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
# Configuration for probot-no-response - https://github.com/probot/no-response | ||
|
||
# Number of days of inactivity before an Issue is closed for lack of response | ||
daysUntilClose: 7 | ||
# Label requiring a response | ||
responseRequiredLabel: waiting-customer-response | ||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information from the original author. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have or find the answers we need so | ||
that we can investigate further. | ||
# Configuration for probot-no-response - https://github.com/probot/no-response | ||
|
||
# Number of days of inactivity before an Issue is closed for lack of response | ||
daysUntilClose: 7 | ||
# Label requiring a response | ||
responseRequiredLabel: waiting-customer-response | ||
# Comment to post when closing an Issue for lack of response. Set to `false` to disable | ||
closeComment: > | ||
This issue has been automatically closed because there has been no response | ||
to our request for more information from the original author. With only the | ||
information that is currently in the issue, we don't have enough information | ||
to take action. Please reach out if you have or find the answers we need so | ||
that we can investigate further. |
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,68 +1,68 @@ | ||
language: php | ||
php: | ||
- 7.0 | ||
- 7.1 | ||
sudo: required | ||
dist: trusty | ||
env: | ||
global: | ||
- COMPOSER_BIN_DIR=~/bin | ||
- INTEGRATION_SETS=3 | ||
- NODE_JS_VERSION=6 | ||
- MAGENTO_HOST_NAME="magento2.travis" | ||
- COMPOSER_MODULE=mageplaza/module-delete-orders | ||
matrix: | ||
- MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=static | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
- MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
- MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
|
||
matrix: | ||
exclude: | ||
- php: 7.0 | ||
env: MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static | ||
- php: 7.0 | ||
env: MAGENTO_VERSION=2.2.2 TEST_SUITE=static | ||
cache: | ||
apt: true | ||
directories: | ||
- "$HOME/.composer/cache" | ||
- "$HOME/.nvm" | ||
addons: | ||
apt: | ||
packages: | ||
- mysql-server-5.6 | ||
- mysql-client-core-5.6 | ||
- mysql-client-5.6 | ||
- postfix | ||
firefox: '46.0' | ||
hosts: | ||
- magento2.travis | ||
before_install: | ||
- git clone https://github.com/magento/magento2 --branch $MAGENTO_VERSION | ||
- cd magento2 | ||
- bash ./dev/travis/before_install.sh | ||
install: | ||
- composer install --no-interaction --prefer-dist | ||
- composer require $COMPOSER_MODULE | ||
before_script: | ||
#- cp -f ${TRAVIS_BUILD_DIR}/dev/tests/integration/phpunit.xml.dist dev/tests/integration/ | ||
- echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Less/_files/whitelist/common.txt | ||
- echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt | ||
- echo "vendor/$COMPOSER_MODULE/**/*.js" > dev/tests/static/testsuite/Magento/Test/Js/_files/whitelist/magento.txt | ||
- bash ./dev/travis/before_script.sh | ||
script: | ||
- test $TEST_SUITE = "static" && TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"' || true | ||
- test $TEST_SUITE = "functional" && TEST_FILTER='dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php' || true | ||
|
||
|
||
language: php | ||
php: | ||
- 7.0 | ||
- 7.1 | ||
sudo: required | ||
dist: trusty | ||
env: | ||
global: | ||
- COMPOSER_BIN_DIR=~/bin | ||
- INTEGRATION_SETS=3 | ||
- NODE_JS_VERSION=6 | ||
- MAGENTO_HOST_NAME="magento2.travis" | ||
- COMPOSER_MODULE=mageplaza/module-delete-orders | ||
matrix: | ||
- MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.1 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=static | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.2 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
- MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.5 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
- MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=1 | ||
- MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=2 | ||
- MAGENTO_VERSION=2.2.6 TEST_SUITE=integration INTEGRATION_INDEX=3 | ||
|
||
matrix: | ||
exclude: | ||
- php: 7.0 | ||
env: MAGENTO_VERSION=2.2.2 TEST_SUITE=js GRUNT_COMMAND=static | ||
- php: 7.0 | ||
env: MAGENTO_VERSION=2.2.2 TEST_SUITE=static | ||
cache: | ||
apt: true | ||
directories: | ||
- "$HOME/.composer/cache" | ||
- "$HOME/.nvm" | ||
addons: | ||
apt: | ||
packages: | ||
- mysql-server-5.6 | ||
- mysql-client-core-5.6 | ||
- mysql-client-5.6 | ||
- postfix | ||
firefox: '46.0' | ||
hosts: | ||
- magento2.travis | ||
before_install: | ||
- git clone https://github.com/magento/magento2 --branch $MAGENTO_VERSION | ||
- cd magento2 | ||
- bash ./dev/travis/before_install.sh | ||
install: | ||
- composer install --no-interaction --prefer-dist | ||
- composer require $COMPOSER_MODULE | ||
before_script: | ||
#- cp -f ${TRAVIS_BUILD_DIR}/dev/tests/integration/phpunit.xml.dist dev/tests/integration/ | ||
- echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Less/_files/whitelist/common.txt | ||
- echo "vendor/$COMPOSER_MODULE" > dev/tests/static/testsuite/Magento/Test/Php/_files/whitelist/common.txt | ||
- echo "vendor/$COMPOSER_MODULE/**/*.js" > dev/tests/static/testsuite/Magento/Test/Js/_files/whitelist/magento.txt | ||
- bash ./dev/travis/before_script.sh | ||
script: | ||
- test $TEST_SUITE = "static" && TEST_FILTER='--filter "Magento\\Test\\Php\\LiveCodeTest"' || true | ||
- test $TEST_SUITE = "functional" && TEST_FILTER='dev/tests/functional/testsuites/Magento/Mtf/TestSuite/InjectableTests.php' || true | ||
|
||
|
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
Oops, something went wrong.