-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Notes: in new pytest, self.assertEquals has been deprecated and self.assertEqual is recommended. new pylint introduces a few new rules, which has been addressed in their dedicated commits.
- Loading branch information
Showing
26 changed files
with
114 additions
and
110 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
coverage==4.3.4 | ||
coverage==5.3 | ||
flake8==3.3.0; python_version < '3.8' | ||
flake8==3.7.9; python_version >= '3.8' | ||
pytest-cov==2.4.0 | ||
# astroid > 2.0.4 is not compatible with pylint1.7 | ||
astroid>=1.5.8,<2.1.0; python_version < '3.8' | ||
pylint==1.7.2; python_version < '3.8' | ||
pylint==2.4.4; python_version >= '3.8' | ||
flake8==3.8.4; python_version >= '3.8' | ||
pytest-cov==2.10.1 | ||
|
||
# pylint 2 does not support Python 2. pylint 1.x requires astroid 1.x | ||
astroid~=1.6.0; python_version < '3.6' | ||
pylint~=1.9.5; python_version < '3.6' | ||
pylint~=2.6.0; python_version >= '3.6' | ||
isort>=4.2.5,<5; python_version < '3.8' | ||
|
||
# Test requirements | ||
pytest==3.0.7 | ||
py==1.4.33 | ||
mock==2.0.0 | ||
parameterized==0.6.1 | ||
pytest>=6.1.1; python_version >= '3.6' | ||
pytest~=4.6.11; python_version < '3.6' # pytest dropped python 2 support after 4.6.x | ||
mock==3.0.5; python_version < '3.6' | ||
mock==4.0.2; python_version >= '3.6' | ||
parameterized==0.7.4 | ||
pathlib2==2.3.2; python_version<"3.4" | ||
futures==3.2.0; python_version<"3.2.3" | ||
# Py3.2 backport | ||
backports.tempfile==1.0 | ||
|
||
# tempfile backport for < 3.6 | ||
backports.tempfile==1.0; python_version<"3.7" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.