Skip to content

Commit 58eb07b

Browse files
authored
Merge pull request #1368 from rbpatt2019/pytest-v6-update
Update pytest for testing extra (Fixes #1365)
2 parents b5e59a2 + ca5cc77 commit 58eb07b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

Diff for: CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ All notable changes to `dash` will be documented in this file.
33
This project adheres to [Semantic Versioning](https://semver.org/).
44

55
## [UNRELEASED]
6+
### Changed
7+
- [#1368](https://github.com/plotly/dash/pull/1368) Updated pytest to v6.0.1. To avoid deprecation warnings, this also updated pytest-sugar to 0.9.4 and pytest-mock to 3.2.0. The pytest-mock update only effects python >= 3.0. Pytest-mock remains pinned at 2.0.0 for python == 2.7.
8+
69
### Added
710
- [#1355](https://github.com/plotly/dash/pull/1355) Removed redundant log message and consolidated logger initialization. You can now control the log level - for example suppress informational messages from Dash with `app.logger.setLevel(logging.WARNING)`.
811

Diff for: requires-testing.txt

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
pytest==5.3.5;python_version>="3.0"
1+
pytest==6.0.1;python_version>="3.0"
22
pytest==4.6.9;python_version=="2.7"
3-
pytest-sugar==0.9.2
4-
pytest-mock==2.0.0
3+
pytest-sugar==0.9.4
4+
pytest-mock==3.2.0;python_version>="3.0"
5+
pytest-mock==2.0.0;python_version=="2.7"
56
lxml==4.5.0
67
selenium==3.141.0
78
percy==2.0.2
89
requests[security]==2.21.0
910
beautifulsoup4==4.8.2
10-
waitress==1.4.3
11+
waitress==1.4.3

0 commit comments

Comments
 (0)