-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate requirements.txt with pip-compile
- Loading branch information
Showing
4 changed files
with
59 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
pre-commit | ||
pytest | ||
pytest-asyncio>=0.23 | ||
pytest-mock |
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,4 +1,46 @@ | ||
pre-commit | ||
pytest | ||
pytest-asyncio | ||
pytest-mock | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.8 | ||
# by the following command: | ||
# | ||
# pip-compile --extra=test --output-file=requirements.txt --strip-extras setup.cfg | ||
# | ||
cfgv==3.4.0 | ||
# via pre-commit | ||
distlib==0.3.8 | ||
# via virtualenv | ||
exceptiongroup==1.2.0 | ||
# via pytest | ||
filelock==3.13.1 | ||
# via virtualenv | ||
identify==2.5.35 | ||
# via pre-commit | ||
iniconfig==2.0.0 | ||
# via pytest | ||
nodeenv==1.8.0 | ||
# via pre-commit | ||
packaging==24.0 | ||
# via pytest | ||
platformdirs==4.2.0 | ||
# via virtualenv | ||
pluggy==1.4.0 | ||
# via pytest | ||
pre-commit==3.5.0 | ||
# via async-solipsism (setup.cfg) | ||
pytest==8.1.1 | ||
# via | ||
# async-solipsism (setup.cfg) | ||
# pytest-asyncio | ||
# pytest-mock | ||
pytest-asyncio==0.23.6 | ||
# via async-solipsism (setup.cfg) | ||
pytest-mock==3.14.0 | ||
# via async-solipsism (setup.cfg) | ||
pyyaml==6.0.1 | ||
# via pre-commit | ||
tomli==2.0.1 | ||
# via pytest | ||
virtualenv==20.25.1 | ||
# via pre-commit | ||
|
||
# The following packages are considered to be unsafe in a requirements file: | ||
# setuptools |
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 |
---|---|---|
|
@@ -24,6 +24,7 @@ where = src | |
[options.extras_require] | ||
test = | ||
pre-commit | ||
pytest | ||
pytest-asyncio | ||
pytest-asyncio>=0.23 | ||
pytest-mock |