Skip to content

Commit 922119e

Browse files
committed
Fix pip command for multiple files
1 parent a4452e6 commit 922119e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
with:
8787
python-version: ${{ matrix.version }}
8888
cache: 'pip' # caching pip dependencies
89-
- run: pip install -r requirements-test.txt requirements-devel.txt
89+
- run: pip install -r requirements-test.txt -r requirements-devel.txt
9090
- name: Run unittests
9191
run: pytest --cov -v --cov-report=term-missing --cov=weaviate --cov-report xml:coverage-${{ matrix.folder }}.xml ${{ matrix.folder }}
9292
- name: Archive code coverage results
@@ -259,7 +259,7 @@ jobs:
259259
python-version: "3.11"
260260
cache: 'pip' # caching pip dependencies
261261
- name: Install dependencies
262-
run: pip install -r requirements-test.txt requirements-devel.txt
262+
run: pip install -r requirements-test.txt -r requirements-devel.txt
263263
- name: Build a binary wheel
264264
run: python -m build
265265
- name: Create Wheel Artifacts

0 commit comments

Comments
 (0)