Skip to content

Commit 40d5f0a

Browse files
authored
Merge pull request #2466 from plotly/master-v2.9.1
Master v2.9.1
2 parents 54e765b + f97b5f5 commit 40d5f0a

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

5+
## [2.9.1] - 2023-03-17
6+
7+
## Fixed
8+
9+
- [#2461](https://github.com/plotly/dash/pull/2461) Fix pytest plugin make report when testing not installed, fix [#2420](https://github.com/plotly/dash/issues/2420)
10+
511
## [2.9.0] - 2023-03-16
612

713
## Breaking

dash/testing/plugin.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,10 +105,10 @@ def pytest_addhooks(pluginmanager):
105105

106106
@pytest.hookimpl(tryfirst=True, hookwrapper=True)
107107
def pytest_runtest_makereport(item, call): # pylint: disable=unused-argument
108-
if not _installed:
109-
return
110108
# execute all other hooks to obtain the report object
111109
outcome = yield
110+
if not _installed:
111+
return
112112
rep = outcome.get_result()
113113

114114
# we only look at actual failing test calls, not setup/teardown

dash/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "2.9.0"
1+
__version__ = "2.9.1"

0 commit comments

Comments
 (0)