Skip to content

Commit

Permalink
Merge pull request #1368 from rbpatt2019/pytest-v6-update
Browse files Browse the repository at this point in the history
Update pytest for testing extra (Fixes #1365)
  • Loading branch information
alexcjohnson authored Aug 17, 2020
2 parents b5e59a2 + ca5cc77 commit 58eb07b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ All notable changes to `dash` will be documented in this file.
This project adheres to [Semantic Versioning](https://semver.org/).

## [UNRELEASED]
### Changed
- [#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.

### Added
- [#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)`.

Expand Down
9 changes: 5 additions & 4 deletions requires-testing.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
pytest==5.3.5;python_version>="3.0"
pytest==6.0.1;python_version>="3.0"
pytest==4.6.9;python_version=="2.7"
pytest-sugar==0.9.2
pytest-mock==2.0.0
pytest-sugar==0.9.4
pytest-mock==3.2.0;python_version>="3.0"
pytest-mock==2.0.0;python_version=="2.7"
lxml==4.5.0
selenium==3.141.0
percy==2.0.2
requests[security]==2.21.0
beautifulsoup4==4.8.2
waitress==1.4.3
waitress==1.4.3

0 comments on commit 58eb07b

Please # to comment.