Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@
client_secret = os.getenv("UPGRADE_CHAT_CLIENT_SECRET")
client = Client(client_id=client_id, client_secret=client_secret)

@pytest.mark.asyncio
async def test_environment():
assert client_id is not None, "UPGRADE_CHAT_CLIENT_ID is not set in environment"
assert client_secret is not None, "UPGRADE_CHAT_CLIENT_SECRET is not set in environment"

@pytest.mark.asyncio
async def test_version():
Expand Down
2 changes: 1 addition & 1 deletion upchatpy/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.1.4"
__version__ = "1.1.5"
Loading