Skip to content

Commit

Permalink
Merge pull request #212 from michaelfeil/just-bump
Browse files Browse the repository at this point in the history
0.0.33 bump
  • Loading branch information
michaelfeil authored May 1, 2024
2 parents ae95434 + 2aabd6e commit 7cdeaea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion libs/infinity_emb/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "infinity_emb"
version = "0.0.32"
version = "0.0.33"
description = "Infinity is a high-throughput, low-latency REST API for serving vector embeddings, supporting a wide range of sentence-transformer models and frameworks."
authors = ["michaelfeil <[email protected]>"]
license = "MIT"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import json
import pathlib
import random
import sys
import time
from unittest import TestCase
from uuid import uuid4
Expand Down Expand Up @@ -130,6 +131,7 @@ async def _post_batch(inputs):
print(time_api)


@pytest.mark.skipif(sys.platform != "linux", reason="Only check on linux")
@pytest.mark.anyio
async def test_openapi_same_as_docs_file(client):
path_to_openapi = pathlib.Path(
Expand Down

0 comments on commit 7cdeaea

Please sign in to comment.