Skip to content
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

bpo-37383: Updates docs to reflect AsyncMock call_count after await. #15761

Merged
merged 4 commits into from
Sep 9, 2019

Conversation

lisroach
Copy link
Contributor

@lisroach lisroach commented Sep 9, 2019

Updates documentation to make it more clear that call_count is not updated unless the AsyncMock has been awaited.

https://bugs.python.org/issue37383

@bedevere-bot bedevere-bot added docs Documentation in the Doc dir awaiting core review labels Sep 9, 2019
@lisroach lisroach changed the title bpo-351428: Updates documentation to reflect AsyncMock call_count aft… bpo-351428: Updates docs to reflect AsyncMock call_count after await. Sep 9, 2019
@lisroach lisroach changed the title bpo-351428: Updates docs to reflect AsyncMock call_count after await. bpo-37383: Updates docs to reflect AsyncMock call_count after await. Sep 9, 2019
has been awaited:

>>> mock = AsyncMock()
>>> mock()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This would cause a warning that the mock was not awaited and there is a failure in CI due to the repr output. Perhaps below would help where we skipped doctest in another similar example.

>>> mock()  # doctest: +SKIP
<coroutine object AsyncMockMixin._mock_call at ...>

>>> mock.call_count
0
>>> async def main():
>>> await mock()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
>>> await mock()
... await mock()

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we can directly do >>> await mock() on doctest once I somehow get to https://bugs.python.org/issue37006 :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is there a way to run just the doctests? Somehow I never know how to find these errors until CI raises them.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, I think the steps in travis is good to run the tests https://travis-ci.org/python/cpython/jobs/582713783#L1482 . xvfb-run is required for turtle related tests. It works on my Linux machine not sure how to install xvfb-run on Mac.

$ make -C Doc/ PYTHON=../python venv
$ xvfb-run make -C Doc/ PYTHON=../python SPHINXOPTS="-q -W -j4" doctest

Copy link
Member

@tirkarthi tirkarthi left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM given that we also had a discussion on this behavior.

@lisroach lisroach merged commit b9f65f0 into python:master Sep 9, 2019
@lisroach lisroach deleted the iss351428 branch September 9, 2019 16:54
@bedevere-bot
Copy link

@lisroach: Please replace # with GH- in the commit message next time. Thanks!

@tirkarthi
Copy link
Member

Lisa, please backport the changes to 3.8 too. Thanks.

@miss-islington
Copy link
Contributor

Thanks @lisroach for the PR 🌮🎉.. I'm working now to backport this PR to: 3.8.
🐍🍒⛏🤖

miss-islington pushed a commit to miss-islington/cpython that referenced this pull request Sep 9, 2019
…ythonGH-15761)

* bpo-351428: Updates documentation to reflect AsyncMock call_count after await.

* Adds skip and fixes warning.

* Removes extra >>>.

* Adds ... in front of await mock().
(cherry picked from commit b9f65f0)

Co-authored-by: Lisa Roach <lisaroach14@gmail.com>
@bedevere-bot
Copy link

GH-15810 is a backport of this pull request to the 3.8 branch.

miss-islington added a commit that referenced this pull request Sep 10, 2019
…H-15761)

* bpo-351428: Updates documentation to reflect AsyncMock call_count after await.

* Adds skip and fixes warning.

* Removes extra >>>.

* Adds ... in front of await mock().
(cherry picked from commit b9f65f0)

Co-authored-by: Lisa Roach <lisaroach14@gmail.com>
websurfer5 pushed a commit to websurfer5/cpython that referenced this pull request Jul 20, 2020
…ython#15761)

* bpo-351428: Updates documentation to reflect AsyncMock call_count after await.

* Adds skip and fixes warning.

* Removes extra >>>.

* Adds ... in front of await mock().
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
docs Documentation in the Doc dir skip news
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants