File tree Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Expand file tree Collapse file tree 2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change 25
25
curl -sSL https://install.python-poetry.org | python3 -
26
26
- name : Install dependencies
27
27
run : |
28
- # Update poetry to the latest version.
29
- poetry self update
30
28
# Ensure dependencies are installed without relying on a lock file.
31
29
poetry update
32
- poetry install
30
+ poetry install -E server
33
31
- name : Test with pytest
34
32
run : |
35
33
poetry run pytest -s -x -k test_
Original file line number Diff line number Diff line change 25
25
26
26
# @pytest.mark.skip(reason="Requires uvicorn, which we don't require by default")
27
27
def test_server ():
28
- try :
29
- import janus
30
- except :
31
- os .system (
32
- 'pip install "git+https://github.com/OpenInterpreter/open-interpreter.git#egg=open-interpreter[server]"'
33
- )
34
28
# Start the server in a new thread
35
29
async_interpreter = AsyncInterpreter ()
36
30
async_interpreter .print = False
You can’t perform that action at this time.
0 commit comments