We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd3c2ce commit 1854009Copy full SHA for 1854009
1 file changed
.github/workflows/ci.yml
@@ -39,9 +39,15 @@ jobs:
39
- name: Install aws deps
40
run: poetry run pip install boto3 sagemaker botocore
41
- name: Test
42
- run: poetry run pytest .
+ run: poetry run pytest -rP -n auto .
43
env:
44
CO_API_KEY: ${{ secrets.COHERE_API_KEY }}
45
+ - name: Install aiohttp extra
46
+ run: poetry install --extras aiohttp
47
+
48
+ - name: Test (aiohttp)
49
+ run: poetry run pytest -rP -n auto -m aiohttp .
50
51
publish:
52
needs: [compile, test]
53
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
0 commit comments