-
-
Notifications
You must be signed in to change notification settings - Fork 339
52 lines (49 loc) · 1.34 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
name: Lint, Typecheck and Test
on: [push, pull_request]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Dependencies
run: pip install -r requirements.txt
- name: Typecheck
uses: jakebailey/pyright-action@v1
with:
pylance-version: latest-release
- name: Lint
if: ${{ !cancelled() }}
uses: psf/black@stable
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: true
- name: Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
cache: 'pip'
- name: Dependencies
run: pip install -r requirements.txt
- name: Cache models
uses: actions/cache@v3
with:
path: scripts/downloads
key: models-v4
- name: Download models
run: python scripts/download_models.py --minimal scripts/downloads
- name: Test installer
run: python -m pytest tests/test_server.py -vs --test-install
- name: Test
run: python -m pytest tests -vs --ci