We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8683bf commit a4452e6Copy full SHA for a4452e6
1 file changed
.github/workflows/main.yaml
@@ -86,7 +86,7 @@ jobs:
86
with:
87
python-version: ${{ matrix.version }}
88
cache: 'pip' # caching pip dependencies
89
- - run: pip install -r requirements-test.txt
+ - run: pip install -r requirements-test.txt requirements-devel.txt
90
- name: Run unittests
91
run: pytest --cov -v --cov-report=term-missing --cov=weaviate --cov-report xml:coverage-${{ matrix.folder }}.xml ${{ matrix.folder }}
92
- name: Archive code coverage results
@@ -259,7 +259,7 @@ jobs:
259
python-version: "3.11"
260
261
- name: Install dependencies
262
- run: pip install -r requirements-test.txt
+ run: pip install -r requirements-test.txt requirements-devel.txt
263
- name: Build a binary wheel
264
run: python -m build
265
- name: Create Wheel Artifacts
0 commit comments