Skip to content

Commit 638cb40

Browse files
authored
Merge pull request #172 from pytest-dev/release-1.3.0
Release 1.3.0
2 parents b731fec + 0e992d3 commit 638cb40

7 files changed

+22
-24
lines changed

.pre-commit-config.yaml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v3.4.0
3+
rev: v4.5.0
44
hooks:
55
- id: check-byte-order-marker
66
- id: trailing-whitespace
@@ -9,19 +9,19 @@ repos:
99
args: [--remove]
1010
- id: check-yaml
1111
- repo: https://github.com/asottile/reorder_python_imports
12-
rev: v2.4.0
12+
rev: v3.12.0
1313
hooks:
1414
- id: reorder-python-imports
1515
args: ['--application-directories=.:src', --py3-plus]
1616
- repo: https://github.com/python/black
17-
rev: 20.8b1
17+
rev: 23.10.0
1818
hooks:
1919
- id: black
20-
- repo: https://gitlab.com/pycqa/flake8
21-
rev: 3.8.4
20+
- repo: https://github.com/PyCQA/flake8
21+
rev: 6.1.0
2222
hooks:
2323
- id: flake8
24-
additional_dependencies: [flake8-bugbear]
24+
additional_dependencies: [flake8-bugbear]
2525
- repo: local
2626
hooks:
2727
- id: rst
@@ -31,6 +31,6 @@ repos:
3131
language: python
3232
additional_dependencies: [pygments, restructuredtext_lint]
3333
- repo: https://github.com/myint/autoflake.git
34-
rev: v1.4
34+
rev: v2.2.1
3535
hooks:
3636
- id: autoflake

docs/changelog.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Changelog
44
=========
55

6-
UNRELEASED
7-
----------
6+
1.3.0 (2023-10-23)
7+
------------------
88

99
- Fix compatibility with ``Flask 3.0`` -- the consequence is that the deprecated and incompatible ``request_ctx`` has been removed.
1010

docs/conf.py

+7-8
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
# serve to show the default.
1313
import datetime
1414
import os
15-
import sys
1615

1716
# If extensions (or modules to document with autodoc) are in another directory,
1817
# add these directories to sys.path here. If the directory is relative to the
@@ -42,8 +41,8 @@
4241
master_doc = "index"
4342

4443
# General information about the project.
45-
project = u"pytest-flask"
46-
copyright = u"%d, Vital Kudzelka and contributors" % datetime.date.today().year
44+
project = "pytest-flask"
45+
copyright = "%d, Vital Kudzelka and contributors" % datetime.date.today().year
4746

4847
# The version info for the project you're documenting, acts as replacement for
4948
# |version| and |release|, also used in various other places throughout the
@@ -203,8 +202,8 @@
203202
(
204203
"index",
205204
"pytest-flask.tex",
206-
u"pytest-flask Documentation",
207-
u"Vital Kudzelka",
205+
"pytest-flask Documentation",
206+
"Vital Kudzelka",
208207
"manual",
209208
),
210209
]
@@ -235,7 +234,7 @@
235234
# One entry per manual page. List of tuples
236235
# (source start file, name, description, authors, manual section).
237236
man_pages = [
238-
("index", "pytest-flask", u"pytest-flask Documentation", [u"Vital Kudzelka"], 1)
237+
("index", "pytest-flask", "pytest-flask Documentation", ["Vital Kudzelka"], 1)
239238
]
240239

241240
# If true, show URL addresses after external links.
@@ -251,8 +250,8 @@
251250
(
252251
"index",
253252
"pytest-flask",
254-
u"pytest-flask Documentation",
255-
u"Vital Kudzelka",
253+
"pytest-flask Documentation",
254+
"Vital Kudzelka",
256255
"pytest-flask",
257256
"One line description of project.",
258257
"Miscellaneous",

src/pytest_flask/fixtures.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#!/usr/bin/env python
22
import socket
3-
import warnings
43

54
import pytest
65

src/pytest_flask/live_server.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ def stop(self):
8585
self._process.terminate()
8686

8787
def _stop_cleanly(self, timeout=5):
88-
"""Attempts to stop the server cleanly by sending a SIGINT signal and waiting for
89-
``timeout`` seconds.
88+
"""Attempts to stop the server cleanly by sending a SIGINT
89+
signal and waiting for ``timeout`` seconds.
9090
9191
:return: True if the server was cleanly stopped, False otherwise.
9292
"""

tests/test_internal.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ def deprecated_fun():
1111

1212
with pytest.warns(DeprecationWarning) as record:
1313
deprecated_fun()
14-
assert len(record) == 1
15-
assert record[0].message.args[0] == "testing decorator"
14+
assert len(record) == 1
15+
assert record[0].message.args[0] == "testing decorator"

tests/test_live_server.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -87,8 +87,8 @@ def test_stop_cleanly_join_exception(self, appdir, live_server, caplog):
8787
def test_clean_stop_live_server(self, appdir, monkeypatch, clean_stop):
8888
"""Ensure the fixture is trying to cleanly stop the server.
8989
90-
Because this is tricky to test, we are checking that the _stop_cleanly() internal
91-
function was called and reported success.
90+
Because this is tricky to test, we are checking that the
91+
_stop_cleanly() internal function was called and reported success.
9292
"""
9393
from pytest_flask.fixtures import LiveServer
9494

0 commit comments

Comments
 (0)