This repository was archived by the owner on Jan 29, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 55
67 lines (65 loc) · 2.06 KB
/
python-pytest-image.yml
File metadata and controls
67 lines (65 loc) · 2.06 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Run Parallelized Pytest Image
on:
push:
branches:
- main
paths:
- 'vectorhub/encoders/image/**'
- 'tests/encoders/image/**'
- '.github/workflows/python-pytest-image.yml'
pull_request:
branches:
- main
paths:
- 'vectorhub/encoders/image/**'
- 'tests/encoders/image/**'
- '.github/workflows/python-pytest-image.yml'
jobs:
run_test:
runs-on: ubuntu-latest
strategy:
max-parallel: 30
matrix:
python-version: [3.6, 3.7]
test-path:
- tests/encoders/image/vectorai
- tests/encoders/image/tfhub/test_bit.py
- tests/encoders/image/tfhub/test_inception_resnet.py
- tests/encoders/image/tfhub/test_inception.py
- tests/encoders/image/tfhub/test_mobilenet.py
- tests/encoders/image/tfhub/test_resnet.py
- tests/encoders/image/fastai
- tests/encoders/face
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip
uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys: |
${{ runner.os }}-pip-
${{ runner.os }}-
- name: Install base dependencies
run: |
sudo apt-get install libsndfile1
python -m pip install --upgrade pip
pip install -e .
- name: Install dependencies for tests
run: |
pip install -r requirements.txt
pip install -e ".[test]"
pip install -e ".[encoders-image-tfhub]"
pip install -e ".[encoders-image-fastai]"
pip install -e ".[encoders-image-tf-face-detection]"
- name: Run Tests
env:
VI_USERNAME: ${{ secrets.VI_USERNAME }}
VI_API_KEY: ${{ secrets.VI_API_KEY }}
VH_USERNAME: ${{ secrets.VH_USERNAME }}
VH_API_KEY: ${{ secrets.VH_API_KEY }}
run: python -m pytest ${{ matrix.test-path }}