-
Notifications
You must be signed in to change notification settings - Fork 566
Rebase python3 branch with master #522
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
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
6e1a2a7
Update pytest-cov requirement from ~=2.6 to ~=2.8 (#489)
dependabot-preview[bot] 53dc75f
Update autopep8 requirement from ~=1.4 to ~=1.5 (#490)
dependabot-preview[bot] 3359a44
Update tox-travis requirement from ~=0.11 to ~=0.12 (#491)
dependabot-preview[bot] 4d269f8
Update tox requirement from ~=3.6 to ~=3.14 (#494)
dependabot-preview[bot] b95776d
chore: Fix find_by_images_tests.py (#495)
ki4070ma f2bf259
feat: Add viewmatcher (#480)
ki4070ma 864b045
Bump 0.50
KazuCocoa f14291b
Update changelog for 0.50
KazuCocoa 446b8c4
Fix flaky functional tests (#473)
ki4070ma 4641b45
feat: Add idempotency key header to create session requests (#514)
mykola-mokhnach 34427a1
feat: Override send_keys without file upload function (#515)
KazuCocoa 5a545d7
Bump 0.51
KazuCocoa 2141dbd
Update changelog for 0.51
KazuCocoa 9bdf1f7
test: Fix test_clear flaky functional test (#519)
iamnrupesh ba64adf
test: Add unit test for set_value (setImmediateValue) (#518)
iamnrupesh 9e1959c
chore: Fix int - str comparison error in ios desired capabilities (#517)
Akulavenkatesh a2e21d1
fix: Handling of dictionary-values in WebElement.get_attribute() (#521)
hanneshauer c702cef
Bump 0.52
KazuCocoa cfd99cf
Update changelog for 0.52
KazuCocoa 569342e
Merge branch 'master' into rebase-master
ki4070ma c8d1af3
Fix mypy error
ki4070ma 91a26e8
tweak
ki4070ma e800ce7
Add wait to test
ki4070ma efd0655
Skip tap_twice test
ki4070ma c378859
review comments
ki4070ma 56e8e0c
Remove unnecessary import
ki4070ma File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -170,7 +170,7 @@ def start(self, **kwargs: Any) -> sp.Popen: | |
if not self.is_running or (timeout_ms > 0 and not poll_url(host, port, STATUS_URL, timeout_ms)): | ||
error_msg = f'Appium has failed to start on {host}:{port} within {timeout_ms}ms timeout' | ||
if error_msg is not None: | ||
if stderr == sp.PIPE: | ||
if stderr == sp.PIPE and self._process.stderr is not None: | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [Notes] To fix mypy error |
||
err_output = self._process.stderr.read() | ||
if err_output: | ||
error_msg += f'\nOriginal error: {str(err_output)}' | ||
|
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
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
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
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I love mypy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's nice catch by mypy.