-
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
Release 3.0.2 #1896
Release 3.0.2 #1896
Changes from 3 commits
4c45b93
f985f47
d512e7f
a9f3053
4e58c9a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
# | ||
__version__ = '3.0.2.dev' | ||
__version__ = '3.0.2' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
pytest-3.0.2 | ||
============ | ||
|
||
pytest 3.0.2 has just been released to PyPI. | ||
|
||
This release fixes some regressions reported in version 3.0.0, being a | ||
drop-in replacement. To upgrade:: | ||
|
||
pip install --upgrade pytest | ||
|
||
The changelog is available at http://doc.pytest.org/en/latest/changelog.html. | ||
|
||
Thanks to all who contributed to this release, among them: | ||
|
||
* Adam Chainz | ||
* Andrew Svetlov | ||
* Bruno Oliveira | ||
* Daniel Hahler | ||
* Dmitry Dygalo | ||
* Florian Bruhin | ||
* Marcin Bachry | ||
* Ronny Pfannschmidt | ||
* matthiasha | ||
|
||
Happy testing, | ||
The pytest Development Team | ||
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. |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,9 +9,9 @@ and how ``pytest`` presents things (unfortunately | |
not showing the nice colors here in the HTML that you | ||
get on the terminal - we are working on that):: | ||
|
||
$ pytest failure_demo.py | ||
assertion $ pytest failure_demo.py | ||
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. this seems unintended? 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. That fixed a regression in Regen introduced by me in another commit: it means regen should change to the 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. I only noticed the problem after running regendoc again because it wouldn't find |
||
======= test session starts ======== | ||
platform linux -- Python 3.5.2, pytest-3.0.1, py-1.4.31, pluggy-0.3.1 | ||
platform linux -- Python 3.5.2, pytest-3.0.2, py-1.4.31, pluggy-0.3.1 | ||
rootdir: $REGENDOC_TMPDIR/assertion, inifile: | ||
collected 42 items | ||
|
||
|
@@ -359,7 +359,7 @@ get on the terminal - we are working on that):: | |
> int(s) | ||
E ValueError: invalid literal for int() with base 10: 'qwe' | ||
|
||
<0-codegen $PYTHON_PREFIX/lib/python3.5/site-packages/_pytest/python.py:1189>:1: ValueError | ||
<0-codegen $PYTHON_PREFIX/lib/python3.5/site-packages/_pytest/python.py:1190>:1: ValueError | ||
_______ TestRaises.test_raises_doesnt ________ | ||
|
||
self = <failure_demo.TestRaises object at 0xdeadbeef> | ||
|
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 moved
sprint2016
here because it makes more sense chronologically.