Skip to content

Commit

Permalink
feat: use pyproject.toml and uv publish pkg
Browse files Browse the repository at this point in the history
  • Loading branch information
ifooth committed Nov 5, 2024
1 parent 8b96399 commit 98068f6
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions tests/test_client_integrated.py
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,9 @@ def test_get(self, config: ClientConfig, existent_app_key: List[str]):
def test_get_non_exists(self, config: ClientConfig, existent_app_key: List[str]):
# Try out best to forge an invalid key
app, key = existent_app_key
with (
BscpClient(server_addrs=config.server_addrs, token=config.token, biz_id=config.biz_id) as client,
pytest.raises(BscpClientGetError),
):
with BscpClient(
server_addrs=config.server_addrs, token=config.token, biz_id=config.biz_id
) as client, pytest.raises(BscpClientGetError):
_ = client.get(app, key + "-non-existent-suffix-for-test")


Expand Down

0 comments on commit 98068f6

Please sign in to comment.