mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-04-28 11:44:17 +00:00
Signed-off-by: Adam Treat <treat.adam@gmail.com> Signed-off-by: Jared Van Bortel <jared@nomic.ai> Co-authored-by: Jared Van Bortel <jared@nomic.ai>
8 lines
151 B
Python
8 lines
151 B
Python
import os
|
|
|
|
import pytest
|
|
|
|
# test that the chat executable exists
|
|
def test_chat_environment():
|
|
assert os.path.exists(os.environ['CHAT_EXECUTABLE'])
|