-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
Preparing release version 3.8.0 #3939
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
Changes from all commits
126896f
5f97711
c64a8c9
a6cdd0d
539a22c
044d2b8
93f7832
5fefc48
5e260c4
dda5e5e
325319d
2a917a5
2f2d586
80eef29
8f4685e
23295e1
4b94760
a605ad4
3035b27
ade01b1
0183d46
84a033f
64f0068
11e591e
2256f2f
01df368
b01704c
10f21b4
ffd47ce
3fcc4cd
51e32cf
1a9d913
0100f61
8e4501e
0c8dbdc
78ac7d9
19a01c9
208dd3a
7e13593
9965ed8
60499d2
0fffa6b
56d4141
b818314
8ce3aea
415a62e
c304998
e9417be
016f8f1
29bfa5e
615c671
9ae0a3c
284a2d1
b42518a
022c58b
d3f72ca
f1cfd10
a054aa4
5ef5126
47bf58d
438f7a1
3db76cc
d3ca739
b7560a8
6d497f2
5a52aca
2e0a7cf
4592def
adc9ed8
f42b501
ddb3084
f63c683
531b76a
6e453ed
2e3acd0
71cf29f
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 |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| Warnings are now captured and displayed during test collection. |
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,6 +6,7 @@ Release announcements | |
| :maxdepth: 2 | ||
|
|
||
|
|
||
| release-3.8.0 | ||
| release-3.7.4 | ||
| release-3.7.3 | ||
| release-3.7.2 | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| pytest-3.8.0 | ||
| ======================================= | ||
|
|
||
| The pytest team is proud to announce the 3.8.0 release! | ||
|
|
||
| pytest is a mature Python testing tool with more than a 2000 tests | ||
| against itself, passing on many different interpreters and platforms. | ||
|
|
||
| This release contains a number of bugs fixes and improvements, so users are encouraged | ||
| to take a look at the CHANGELOG: | ||
|
|
||
| https://docs.pytest.org/en/latest/changelog.html | ||
|
|
||
| For complete documentation, please visit: | ||
|
|
||
| https://docs.pytest.org/en/latest/ | ||
|
|
||
| As usual, you can upgrade from pypi via: | ||
|
|
||
| pip install -U pytest | ||
|
|
||
| Thanks to all who contributed to this release, among them: | ||
|
|
||
| * Anthony Sottile | ||
| * Bruno Oliveira | ||
| * CrazyMerlyn | ||
| * Daniel Hahler | ||
| * Fabio Zadrozny | ||
| * Jeffrey Rackauckas | ||
| * Jiri Kuncar | ||
| * Ronny Pfannschmidt | ||
| * Steve Piercy | ||
| * Virgil Dupras | ||
| * dhirensr | ||
| * hoefling | ||
| * wim glenn | ||
|
|
||
|
|
||
| Happy testing, | ||
| The Pytest Development Team |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -180,18 +180,32 @@ Finding out what is collected | |
| You can always peek at the collection tree without running tests like this:: | ||
|
|
||
| . $ pytest --collect-only pythoncollection.py | ||
| =========================== test session starts ============================ | ||
| platform linux -- Python 3.x.y, pytest-3.x.y, py-1.x.y, pluggy-0.x.y | ||
| rootdir: $REGENDOC_TMPDIR, inifile: pytest.ini | ||
| collected 3 items | ||
| <Module 'CWD/pythoncollection.py'> | ||
| <Function 'test_function'> | ||
| <Class 'TestClass'> | ||
| <Instance '()'> | ||
| <Function 'test_method'> | ||
| <Function 'test_anothermethod'> | ||
| Traceback (most recent call last): | ||
|
Member
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. Hmm this is incorrect, probably some update to regendocs?
Member
Author
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. no idea off-hand, its the only hunk in that file, i'll revert that file and sort it out later |
||
| File "$PYTHON_PREFIX/lib/python3.6/site-packages/_pytest/config/__init__.py", line 381, in _getconftestmodules | ||
| return self._path2confmods[path] | ||
| KeyError: local('$REGENDOC_TMPDIR/CWD/pythoncollection.py') | ||
|
|
||
| During handling of the above exception, another exception occurred: | ||
| Traceback (most recent call last): | ||
| File "$PYTHON_PREFIX/lib/python3.6/site-packages/_pytest/config/__init__.py", line 381, in _getconftestmodules | ||
| return self._path2confmods[path] | ||
| KeyError: local('$REGENDOC_TMPDIR/CWD') | ||
|
|
||
| During handling of the above exception, another exception occurred: | ||
| Traceback (most recent call last): | ||
| File "$PYTHON_PREFIX/lib/python3.6/site-packages/_pytest/config/__init__.py", line 412, in _importconftest | ||
| return self._conftestpath2mod[conftestpath] | ||
| KeyError: local('$REGENDOC_TMPDIR/CWD/conftest.py') | ||
|
|
||
| During handling of the above exception, another exception occurred: | ||
| Traceback (most recent call last): | ||
| File "$PYTHON_PREFIX/lib/python3.6/site-packages/_pytest/config/__init__.py", line 418, in _importconftest | ||
| mod = conftestpath.pyimport() | ||
| File "$PYTHON_PREFIX/lib/python3.6/site-packages/py/_path/local.py", line 686, in pyimport | ||
| raise self.ImportMismatchError(modname, modfile, self) | ||
| py._path.local.LocalPath.ImportMismatchError: ('conftest', '$PWD/example/conftest.py', local('$REGENDOC_TMPDIR/CWD/conftest.py')) | ||
| ERROR: could not load $REGENDOC_TMPDIR/CWD/conftest.py | ||
|
|
||
| ======================= no tests ran in 0.12 seconds ======================= | ||
|
|
||
| .. _customizing-test-collection: | ||
|
|
||
|
|
||
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.
we might want to consider splitting deprecations and removals
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.
Hmm good point