Skip to content

Commit 943bbdd

Browse files
authored
Merge pull request #4100 from nicoddemus/merge-master-into-features
Merge master into features
2 parents b895816 + 9a3836a commit 943bbdd

38 files changed

+176
-162
lines changed

.pre-commit-config.yaml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ repos:
77
args: [--safe, --quiet]
88
language_version: python3
99
- repo: https://github.com/asottile/blacken-docs
10-
rev: v0.2.0
10+
rev: v0.3.0
1111
hooks:
1212
- id: blacken-docs
13-
additional_dependencies: [black==18.6b4]
13+
additional_dependencies: [black==18.9b0]
1414
language_version: python3
1515
- repo: https://github.com/pre-commit/pre-commit-hooks
16-
rev: v1.3.0
16+
rev: v1.4.0-1
1717
hooks:
1818
- id: trailing-whitespace
1919
- id: end-of-file-fixer
@@ -22,11 +22,12 @@ repos:
2222
exclude: _pytest/debugging.py
2323
- id: flake8
2424
- repo: https://github.com/asottile/pyupgrade
25-
rev: v1.2.0
25+
rev: v1.8.0
2626
hooks:
27-
- id: pyupgrade
27+
- id: pyupgrade
28+
args: [--keep-percent-format]
2829
- repo: https://github.com/pre-commit/pygrep-hooks
29-
rev: v1.0.0
30+
rev: v1.1.0
3031
hooks:
3132
- id: rst-backticks
3233
- repo: local

bench/bench_argcomplete.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
2-
31
# 10000 iterations, just for relative comparison
42
# 2.7.5 3.3.2
53
# FilesCompleter 75.1109 69.2116

bench/manyparam.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import pytest
32

43

changelog/2535.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Improve error message when test functions of ``unittest.TestCase`` subclasses use a parametrized fixture.

changelog/3057.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
``request.fixturenames`` now correctly returns the name of fixtures created by ``request.getfixturevalue()``.

changelog/4058.doc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Update fixture documentation to specify that a fixture can be invoked twice in the scope it's defined for.

changelog/4064.doc.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
According to unittest.rst, setUpModule and tearDownModule were not implemented, but it turns out they are. So updated the documentation for unittest.

changelog/4066.bugfix.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix source reindenting by using ``textwrap.dedent`` directly.

doc/en/announce/release-3.6.3.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@ Thanks to all who contributed to this release, among them:
2020
* Ondřej Súkup
2121
* Ronny Pfannschmidt
2222
* T.E.A de Souza
23-
* Victor
24-
* victor
23+
* Victor Maryama
2524

2625

2726
Happy testing,

doc/en/announce/release-3.7.3.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,9 @@ Thanks to all who contributed to this release, among them:
2222
* Ronny Pfannschmidt
2323
* Sankt Petersbug
2424
* Tyler Richard
25-
* Victor
25+
* Victor Maryama
2626
* Vlad Shcherbina
2727
* turturica
28-
* victor
2928
* wim glenn
3029

3130

0 commit comments

Comments
 (0)