-
-
Notifications
You must be signed in to change notification settings - Fork 240
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pin test requirements and replace flake8 with pylint
as the former had conflicting dependencies with other packages. This pinning is needed as sometimes installing test dependencies is super slow in CI/CD because pip has to resolve a matching set of versions (I observed even a >20 minutes running time and a timeout).
- Loading branch information
Showing
6 changed files
with
25 additions
and
26 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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
[tool.pylint."messages control"] | ||
|
||
disable = no-member | ||
|
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,18 +1,18 @@ | ||
-r requirements.txt | ||
pep8 | ||
coverage | ||
mock | ||
pytest>=7,<8 | ||
flake8>=5.0.4,<6 | ||
pytest-flake8>=1.1.1,<2 | ||
pytest-cov | ||
pytest-mock | ||
pytest-mypy | ||
pytest-randomly | ||
cov-core | ||
beautifulsoup4 | ||
bandit | ||
mypy | ||
types-requests | ||
types-setuptools | ||
types-toml | ||
pep8==1.7.1 | ||
coverage==6.5.0 | ||
mock==4.0.3 | ||
pytest==7.2.0 | ||
pylint==2.15.8 | ||
pytest-pylint==0.19.0 | ||
pytest-cov==4.0.0 | ||
pytest-mock==3.10.0 | ||
pytest-mypy==0.10.2 | ||
pytest-randomly==3.12.0 | ||
cov-core==1.15.0 | ||
beautifulsoup4==4.11.1 | ||
bandit==1.7.4 | ||
mypy==0.991 | ||
types-requests==2.28.11.5 | ||
types-setuptools==65.6.0.2 | ||
types-toml==0.10.8.1 |
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