-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* not parametrizing on gpu_verbose; always testing on use_gpu=True ; if TorchBackend works for ot, lets just use that backend; testing on fewer iteration wherever we can; minor refactorings for test speedup; pytest-xdist for parallel execution; correct patching of a test function; not using parallel pytest for coverage generation; removed custom runner now that tests are relatively fast; reduced iterations; decomposed tests to test dissimilarity_metric separately
- Loading branch information
1 parent
1c229d9
commit 67a751e
Showing
31 changed files
with
5,050 additions
and
24,282 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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -43,6 +43,7 @@ addopts = "-sv" | |
dev = [ | ||
"build", | ||
"pytest", | ||
"pytest-xdist", | ||
"coverage", | ||
"coveralls", | ||
"ruff", | ||
|
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,24 +1,85 @@ | ||
anndata==0.10.8 | ||
scanpy==1.10.2 | ||
POT==0.9.4 | ||
numpy==1.26.4 | ||
scipy==1.14.1 | ||
scikit-learn==1.5.1 | ||
IPython==8.27.0 | ||
pytest==8.3.2 | ||
seaborn==0.13.2 | ||
matplotlib==3.9.2 | ||
pandas==2.2.2 | ||
statsmodels==0.14.2 | ||
networkx==3.3 | ||
sphinx==7.4.7 | ||
myst-parser==4.0.0 | ||
sphinx-autodoc-typehints==2.2.3 | ||
nbsphinx==0.9.5 | ||
sphinx-gallery==0.17.1 | ||
sphinx-rtd-theme==2.0.0 | ||
anndata==0.10.9 | ||
array_api_compat==1.9 | ||
asttokens==2.4.1 | ||
build==1.2.2 | ||
certifi==2024.8.30 | ||
cfgv==3.4.0 | ||
charset-normalizer==3.3.2 | ||
contourpy==1.3.0 | ||
coverage==7.6.1 | ||
coveralls==4.0.1 | ||
ruff==0.6.6 | ||
cycler==0.12.1 | ||
decorator==5.1.1 | ||
distlib==0.3.8 | ||
docopt==0.6.2 | ||
execnet==2.1.1 | ||
executing==2.1.0 | ||
filelock==3.16.1 | ||
fonttools==4.54.1 | ||
fsspec==2024.9.0 | ||
h5py==3.12.1 | ||
identify==2.6.1 | ||
idna==3.10 | ||
iniconfig==2.0.0 | ||
ipython==8.28.0 | ||
jedi==0.19.1 | ||
Jinja2==3.1.4 | ||
joblib==1.4.2 | ||
kiwisolver==1.4.7 | ||
legacy-api-wrap==1.4 | ||
llvmlite==0.43.0 | ||
MarkupSafe==2.1.5 | ||
matplotlib==3.9.2 | ||
matplotlib-inline==0.1.7 | ||
mpmath==1.3.0 | ||
natsort==8.4.0 | ||
networkx==3.3 | ||
nodeenv==1.9.1 | ||
numba==0.60.0 | ||
numpy==1.26.4 | ||
packaging==24.1 | ||
pandas==2.2.3 | ||
parso==0.8.4 | ||
patsy==0.5.6 | ||
pexpect==4.9.0 | ||
pillow==10.4.0 | ||
platformdirs==4.3.6 | ||
pluggy==1.5.0 | ||
POT==0.9.4 | ||
pre-commit==3.8.0 | ||
prompt_toolkit==3.0.48 | ||
ptyprocess==0.7.0 | ||
pure_eval==0.2.3 | ||
Pygments==2.18.0 | ||
pynndescent==0.5.13 | ||
pyparsing==3.1.4 | ||
pyproject_hooks==1.2.0 | ||
pytest==8.3.3 | ||
pytest-xdist==3.6.1 | ||
python-dateutil==2.9.0.post0 | ||
pytz==2024.2 | ||
PyYAML==6.0.2 | ||
requests==2.32.3 | ||
ruff==0.6.8 | ||
scanpy==1.10.3 | ||
scikit-learn==1.5.2 | ||
scipy==1.14.1 | ||
seaborn==0.13.2 | ||
session_info==1.0.0 | ||
setuptools==75.1.0 | ||
six==1.16.0 | ||
stack-data==0.6.3 | ||
statsmodels==0.14.4 | ||
stdlib-list==0.10.0 | ||
sympy==1.13.3 | ||
threadpoolctl==3.5.0 | ||
torch==2.4.1 | ||
tqdm==4.66.5 | ||
traitlets==5.14.3 | ||
typing_extensions==4.12.2 | ||
tzdata==2024.2 | ||
umap-learn==0.5.6 | ||
urllib3==2.2.3 | ||
virtualenv==20.26.6 | ||
wcwidth==0.2.13 | ||
wheel==0.44.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
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.