We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6ad65 commit 67b4623Copy full SHA for 67b4623
.github/workflows/ci_python.yml
@@ -28,8 +28,9 @@ jobs:
28
run: |
29
cd apis/python
30
pip install .[test]
31
- pytest -k "not ingest" # TODO: requires token
+ pytest
32
+ # TODO: fix editable on linux
33
#pip uninstall -y tiledb.vector_search
34
#pip install -e .
- #pytest -k "not ingest" # TODO: requires token
35
+ #pytest
36
shell: bash -el {0}
apis/python/pyproject.toml
@@ -20,10 +20,11 @@ classifiers = [
20
dependencies = [
21
"tiledb-cloud>=0.10.5",
22
"tiledb>=0.15.2",
23
+ "typing-extensions" # for tiledb-cloud indirect
24
]
25
26
[project.optional-dependencies]
-test = ["pytest"]
27
+test = ["pytest", "scikit-learn", "tiledb-cloud"]
[project.urls]
0 commit comments