We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d5f82b commit e204dfaCopy full SHA for e204dfa
.github/workflows/test.yaml
@@ -165,3 +165,26 @@ jobs:
165
env:
166
FMA_APIKEY: ${{ secrets.FMA_APIKEY }}
167
run: pytest tests/test_async_inference.py --tb=short
168
+
169
+ test_m1_clients:
170
+ needs:
171
+ - lint
172
+ runs-on: ubuntu-latest
173
174
+ container:
175
+ image: python:3.8
176
177
+ steps:
178
+ - name: Check out git repo
179
+ uses: actions/checkout@v2
180
+ with:
181
+ fetch-depth: 0
182
183
+ - name: Fix
184
+ run: git config --global --add safe.directory '*'
185
186
+ - name: Install dependencies
187
+ run: pip3 install poetry pytest-asyncio && poetry config virtualenvs.create false && poetry install
188
189
+ - name: Test
190
+ run: pytest tests/test_flymyai_m1_client.py --tb=short
0 commit comments