We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 781048d commit 369c224Copy full SHA for 369c224
2 files changed
modules/chroma/testcontainers/chroma/__init__.py
@@ -32,7 +32,7 @@ class ChromaContainer(DockerContainer):
32
33
def __init__(
34
self,
35
- image: str = "chromadb/chroma:0.6.3",
+ image: str = "chromadb/chroma:1.0.0",
36
port: int = 8000,
37
**kwargs,
38
) -> None:
modules/chroma/tests/test_chroma.py
@@ -3,7 +3,7 @@
3
4
5
def test_docker_run_chroma():
6
- with ChromaContainer(image="chromadb/chroma:latest") as chroma:
+ with ChromaContainer(image="chromadb/chroma:1.0.0") as chroma:
7
client = chromadb.HttpClient(host=chroma.get_config()["host"], port=chroma.get_config()["port"])
8
col = client.get_or_create_collection("test")
9
assert col.name == "test"
0 commit comments