File tree Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Expand file tree Collapse file tree 3 files changed +18
-2
lines changed Original file line number Diff line number Diff line change 22All notable changes to `dash` will be documented in this file.
33This project adheres to [Semantic Versioning](https://semver.org/).
44
5+ ## [2.4.1] - 2022-05-11
6+
7+ ### Fixed
8+
9+ - Fix [#2045](https://github.com/plotly/dash/issues/2045) import error when using pytest but `dash[testing]` is not installed.
10+
511## [2.4.0] - 2022-05-11
612
713### Added
Original file line number Diff line number Diff line change 11# pylint: disable=missing-docstring,redefined-outer-name
2+ from typing import Any
3+
24import pytest
35from .consts import SELENIUM_GRID_DEFAULT
46
1315 from dash .testing .browser import Browser
1416 from dash .testing .composite import DashComposite , DashRComposite , DashJuliaComposite
1517except ImportError :
16- pass
18+ # Running pytest without dash[testing] installed.
19+ ThreadedRunner = Any
20+ ProcessRunner = Any
21+ RRunner = Any
22+ JuliaRunner = Any
23+ Browser = Any
24+ DashComposite = Any
25+ DashRComposite = Any
26+ DashJuliaComposite = Any
1727
1828
1929def pytest_addoption (parser ):
Original file line number Diff line number Diff line change 1- __version__ = "2.4.0 "
1+ __version__ = "2.4.1 "
You can’t perform that action at this time.
0 commit comments