File tree 3 files changed +4
-8
lines changed
haystack/components/builders
3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 66
66
install_cmd : " sudo apt update && sudo apt install ffmpeg"
67
67
- os : macos-latest
68
68
install_cmd : " brew install ffmpeg"
69
-
70
69
- os : windows-latest
71
70
install_cmd : " echo 'No additional dependencies needed'"
72
71
@@ -83,15 +82,15 @@ jobs:
83
82
run : |
84
83
pip install hatch==${{ env.HATCH_VERSION }}
85
84
86
- - name : Install dependencies
87
- shell : bash
88
- run : ${{ matrix.install_cmd }}
89
-
90
85
- name : Run Tika
91
86
if : matrix.os == 'ubuntu-latest'
92
87
run : |
93
88
docker run -d -p 9998:9998 apache/tika:2.9.0.0
94
89
90
+ - name : Install dependencies
91
+ shell : bash
92
+ run : ${{ matrix.install_cmd }}
93
+
95
94
- name : Run tests
96
95
run : hatch run test:integration-only-slow
97
96
Original file line number Diff line number Diff line change 11
11
logger = logging .getLogger (__name__ )
12
12
13
13
14
- # TRIGGER
15
14
@component
16
15
class AnswerBuilder :
17
16
"""
Original file line number Diff line number Diff line change 15
15
from haystack .utils .device import ComponentDevice , Device
16
16
17
17
18
- # TRIGGER
19
-
20
18
SAMPLES_PATH = Path (__file__ ).parent .parent .parent / "test_files"
21
19
22
20
You can’t perform that action at this time.
0 commit comments