Skip to content

Commit e204dfa

Browse files
committed
update tests
1 parent 8d5f82b commit e204dfa

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

.github/workflows/test.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,3 +165,26 @@ jobs:
165165
env:
166166
FMA_APIKEY: ${{ secrets.FMA_APIKEY }}
167167
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

Comments
 (0)