Skip to content

Commit 6b23926

Browse files
Merge pull request #3620 from RonnyPfannschmidt/merge-from-master
Merge from master
2 parents 5b186cd + 89e0a3e commit 6b23926

File tree

112 files changed

+1064
-1227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

112 files changed

+1064
-1227
lines changed

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
exclude: doc/en/example/py2py3/test_py2.py
22
repos:
33
- repo: https://github.com/ambv/black
4-
rev: 18.4a4
4+
rev: 18.6b4
55
hooks:
66
- id: black
77
args: [--safe, --quiet]
88
language_version: python3.6
99
- repo: https://github.com/asottile/blacken-docs
10-
rev: v0.1.1
10+
rev: v0.2.0
1111
hooks:
1212
- id: blacken-docs
13-
additional_dependencies: [black==18.5b1]
13+
additional_dependencies: [black==18.6b4]
1414
language_version: python3.6
1515
- repo: https://github.com/pre-commit/pre-commit-hooks
16-
rev: v1.2.3
16+
rev: v1.3.0
1717
hooks:
1818
- id: trailing-whitespace
1919
- id: end-of-file-fixer

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
python: 'pypy-5.4'
3838
- env: TOXENV=py35
3939
python: '3.5'
40-
- env: TOXENV=py35-freeze
41-
python: '3.5'
40+
- env: TOXENV=py36-freeze
41+
python: '3.6'
4242
- env: TOXENV=py37
4343
python: 'nightly'
4444

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ Maik Figura
126126
Mandeep Bhutani
127127
Manuel Krebber
128128
Marc Schlaich
129+
Marcelo Duarte Trevisani
129130
Marcin Bachry
130131
Mark Abramowitz
131132
Markus Unterwaditzer
@@ -157,6 +158,7 @@ Oleg Sushchenko
157158
Oliver Bestwalter
158159
Omar Kohl
159160
Omer Hadari
161+
Ondřej Súkup
160162
Patrick Hayes
161163
Paweł Adamczak
162164
Pedro Algarvio

CHANGELOG.rst

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,52 @@
88
99
.. towncrier release notes start
1010
11+
Pytest 3.6.2 (2018-06-20)
12+
=========================
13+
14+
Bug Fixes
15+
---------
16+
17+
- Fix regression in ``Node.add_marker`` by extracting the mark object of a
18+
``MarkDecorator``. (`#3555
19+
<https://github.com/pytest-dev/pytest/issues/3555>`_)
20+
21+
- Warnings without ``location`` were reported as ``None``. This is corrected to
22+
now report ``<undetermined location>``. (`#3563
23+
<https://github.com/pytest-dev/pytest/issues/3563>`_)
24+
25+
- Continue to call finalizers in the stack when a finalizer in a former scope
26+
raises an exception. (`#3569
27+
<https://github.com/pytest-dev/pytest/issues/3569>`_)
28+
29+
- Fix encoding error with `print` statements in doctests (`#3583
30+
<https://github.com/pytest-dev/pytest/issues/3583>`_)
31+
32+
33+
Improved Documentation
34+
----------------------
35+
36+
- Add documentation for the ``--strict`` flag. (`#3549
37+
<https://github.com/pytest-dev/pytest/issues/3549>`_)
38+
39+
40+
Trivial/Internal Changes
41+
------------------------
42+
43+
- Update old quotation style to parens in fixture.rst documentation. (`#3525
44+
<https://github.com/pytest-dev/pytest/issues/3525>`_)
45+
46+
- Improve display of hint about ``--fulltrace`` with ``KeyboardInterrupt``.
47+
(`#3545 <https://github.com/pytest-dev/pytest/issues/3545>`_)
48+
49+
- pytest's testsuite is no longer runnable through ``python setup.py test`` --
50+
instead invoke ``pytest`` or ``tox`` directly. (`#3552
51+
<https://github.com/pytest-dev/pytest/issues/3552>`_)
52+
53+
- Fix typo in documentation (`#3567
54+
<https://github.com/pytest-dev/pytest/issues/3567>`_)
55+
56+
1157
Pytest 3.6.1 (2018-06-05)
1258
=========================
1359

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ environment:
2727
- TOXENV: "py36-pluggymaster"
2828
- TOXENV: "py27-nobyte"
2929
- TOXENV: "doctesting"
30-
- TOXENV: "py35-freeze"
30+
- TOXENV: "py36-freeze"
3131
- TOXENV: "docs"
3232

3333
install:

changelog/3061.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix ``ImportWarning`` triggered by explicit relative imports in assertion-rewritten package modules.

changelog/3545.trivial.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3549.doc.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3552.trivial.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog/3555.bugfix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)