-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
1,014 additions
and
829 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
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,2 @@ | ||
-r ./test.in | ||
pytest < 8.0 |
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,64 @@ | ||
# | ||
# This file is autogenerated by pip-compile with Python 3.10 | ||
# by the following command: | ||
# | ||
# pip-compile --annotation-style=line --output-file=deps/test-old.txt deps/test-old.in setup.py | ||
# | ||
attrs==23.2.0 # via hypothesis | ||
black==24.2.0 # via hypofuzz (setup.py), hypothesis | ||
blinker==1.7.0 # via flask | ||
certifi==2024.2.2 # via requests | ||
charset-normalizer==3.3.2 # via requests | ||
click==8.1.7 # via black, flask, hypothesis | ||
coverage[toml]==7.4.1 # via hypofuzz (setup.py), pytest-cov | ||
dash==2.15.0 # via hypofuzz (setup.py) | ||
dash-core-components==2.0.0 # via dash | ||
dash-html-components==2.0.0 # via dash | ||
dash-table==5.0.0 # via dash | ||
exceptiongroup==1.2.0 # via hypothesis, pytest | ||
execnet==2.0.2 # via pytest-xdist | ||
flask==3.0.2 # via dash | ||
hypothesis[cli]==6.98.8 # via hypofuzz (setup.py) | ||
idna==3.6 # via requests | ||
importlib-metadata==7.0.1 # via dash | ||
iniconfig==2.0.0 # via pytest | ||
itsdangerous==2.1.2 # via flask | ||
jinja2==3.1.3 # via flask | ||
libcst==1.1.0 # via hypofuzz (setup.py) | ||
markdown-it-py==3.0.0 # via rich | ||
markupsafe==2.1.5 # via jinja2, werkzeug | ||
mdurl==0.1.2 # via markdown-it-py | ||
mypy-extensions==1.0.0 # via black, typing-inspect | ||
nest-asyncio==1.6.0 # via dash | ||
numpy==1.26.4 # via pandas, pyarrow | ||
packaging==23.2 # via black, plotly, pytest | ||
pandas==2.2.0 # via hypofuzz (setup.py) | ||
pathspec==0.12.1 # via black | ||
platformdirs==4.2.0 # via black | ||
plotly==5.19.0 # via dash | ||
pluggy==1.4.0 # via pytest | ||
psutil==5.9.8 # via hypofuzz (setup.py) | ||
pyarrow==15.0.0 # via -r deps/./test.in | ||
pygments==2.17.2 # via rich | ||
pytest==7.4.4 # via -r deps/./test.in, -r deps/test-old.in, hypofuzz (setup.py), pytest-cov, pytest-xdist | ||
pytest-cov==4.1.0 # via -r deps/./test.in | ||
pytest-xdist==3.5.0 # via -r deps/./test.in | ||
python-dateutil==2.8.2 # via pandas | ||
pytz==2024.1 # via pandas | ||
pyyaml==6.0.1 # via libcst | ||
requests==2.31.0 # via dash, hypofuzz (setup.py) | ||
retrying==1.3.4 # via dash | ||
rich==13.7.0 # via hypothesis | ||
six==1.16.0 # via python-dateutil, retrying | ||
sortedcontainers==2.4.0 # via hypothesis | ||
tenacity==8.2.3 # via plotly | ||
tomli==2.0.1 # via black, coverage, pytest | ||
typing-extensions==4.9.0 # via black, dash, libcst, typing-inspect | ||
typing-inspect==0.9.0 # via libcst | ||
tzdata==2024.1 # via pandas | ||
urllib3==2.2.1 # via requests | ||
werkzeug==3.0.1 # via dash, flask | ||
zipp==3.17.0 # via importlib-metadata | ||
|
||
# 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 |
---|---|---|
|
@@ -2,3 +2,5 @@ | |
pytest | ||
pytest-cov | ||
pytest-xdist | ||
|
||
pyarrow # avoid Pandas deprecation warning via plotly/dash |
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,4 +1,4 @@ | ||
"""Adaptive fuzzing for property-based tests using Hypothesis.""" | ||
|
||
__version__ = "24.2.2" | ||
__version__ = "24.2.3" | ||
__all__: list = [] |
Oops, something went wrong.