Skip to content

Pangolins Sprint 12 #11

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 29 commits into from
Nov 8, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
760573b
MQE-456: persisted.data references break double quotes unnecessarily
KevinBKozan Oct 25, 2017
7961c6d
Merge branch 'develop' of github.com:magento/magento2-functional-test…
okolesnyk Oct 25, 2017
5b8c86b
MQE-236: Add a comment method
ivy00johns Oct 27, 2017
2b759a8
MQE-450: Adding a "clearField" method.
ivy00johns Oct 27, 2017
9ca4270
MQE-465: Data object xml support multidimensional arrays.
jilu1 Oct 25, 2017
0718542
Merge branch 'develop' of github.com:magento-pangolin/magento2-functi…
okolesnyk Oct 30, 2017
7656a87
MQE-398: Rename Page.urlPath attribute
tomreece Oct 30, 2017
ec05ce8
MQE-388: Write store settings before tests
imeron2433 Oct 31, 2017
4f5ab04
MQE-435: Create new jenkins build in test instance to run new framewo…
tomreece Oct 31, 2017
aef9e31
MQE-484: parameter array with data replacement does not generate uniq…
KevinBKozan Oct 31, 2017
f371c4d
MQE-506: Entity data cannot represent empty strings
imeron2433 Oct 31, 2017
0fe9abc
MQE-477: Generate tests throws warning when using action groups in me…
KevinBKozan Nov 1, 2017
afe9083
MQE-510: Output from robo generate:tests contains --env chrome parame…
tomreece Nov 1, 2017
c48607e
Merge branch 'MQE-398' into sprint-develop
tomreece Nov 1, 2017
e5e8744
MQE-510: Output from robo generate:tests contains --env chrome parame…
tomreece Nov 2, 2017
2f532fa
MQE-495: Unable to use action group parameters in parameterArray
KevinBKozan Nov 2, 2017
422271e
Merge branch 'MQE-465' into sprint-develop
jilu1 Nov 2, 2017
0f22e60
MQE-496: Unable to pass multiple ActionGroup arguments into parameter…
KevinBKozan Nov 2, 2017
8f632fd
MQE-395: Throw an exception when a test references an actionGroup tha…
KevinBKozan Nov 2, 2017
40e6f62
Merge branch 'MQE-510' into sprint-develop
tomreece Nov 2, 2017
07e5a06
MQE-465: refactored entity update mechanism and removed path param type.
jilu1 Nov 3, 2017
6daf60a
MQE-484: parameter array with data replacement does not generate uniq…
KevinBKozan Oct 31, 2017
fb88f3a
MQE-477: Generate tests throws warning when using action groups in me…
KevinBKozan Nov 1, 2017
ed03615
MQE-433: Create merge step/action-group verification tests
imeron2433 Nov 6, 2017
a1962ac
Merge remote-tracking branch 'origin/bug-fixed-develop' into sprint-d…
tomreece Nov 6, 2017
a5e371d
MQE-521: Remove composer.lock from framework
tomreece Nov 6, 2017
6d28b21
MQE-522: Fixed warnings for length has to be greater than zero for su…
jilu1 Nov 6, 2017
19def8a
MQE-523: Create mainline PRs for previous sprint (12)
tomreece Nov 7, 2017
6ee4265
MQE-523: Create mainline PRs for previous sprint (12)
tomreece Nov 7, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions bin/all-checks
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Copyright © Magento, Inc. All rights reserved.
# See COPYING.txt for license details.

bin/static-checks
bin/phpunit-checks
8 changes: 8 additions & 0 deletions bin/phpunit-checks
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Copyright © Magento, Inc. All rights reserved.
# See COPYING.txt for license details.

echo "===============================UNIT TESTS==============================="
vendor/bin/phpunit --configuration dev/tests/phpunit.xml --testsuite unit

echo "===============================VERIFICATION TESTS==============================="
vendor/bin/phpunit --configuration dev/tests/phpunit.xml --testsuite verification
11 changes: 11 additions & 0 deletions bin/static-checks
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Copyright © Magento, Inc. All rights reserved.
# See COPYING.txt for license details.

echo "===============================PHP CODE SNIFFER REPORT==============================="
vendor/bin/phpcs ./src --standard=./dev/tests/static/Magento

echo "===============================COPY PASTE DETECTOR REPORT==============================="
vendor/bin/phpcpd ./src

echo "===============================MAGENTO COPYRIGHT REPORT==============================="
bin/copyright-check
Loading