-
-
Notifications
You must be signed in to change notification settings - Fork 9
45 lines (36 loc) · 1.05 KB
/
ci.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
name: CI
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
test:
runs-on: self-hosted
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: install dependency
run: |
pip install .
pip install pytest onnxruntime
- name: yolo test
run: |
pip install pytest pytest-xdist onnxruntime timm torchvision --no-cache-dir --extra-index-url https://download.pytorch.org/whl/cpu
pip install ultralytics
pytest tests/test_yolo.py -sv
- name: model zoo test
run: |
python -m pip install --upgrade pip wheel setuptools
pytest tests/test_modelzoo.py
- name: pattern matcher test
run: |
pytest tests/test_pattern_matcher.py
- name: pattern generator test
run: |
pytest tests/test_pattern_generator.py