-
Notifications
You must be signed in to change notification settings - Fork 56
69 lines (67 loc) · 2.1 KB
/
python-pytest-audio.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: Run Parallelized Pytest Audio
on:
push:
branches:
- main
paths:
- 'vectorhub/encoders/audio/**'
- 'tests/encoders/audio/**'
- 'tests/test_utils.py'
- '.github/workflows/python-pytest-audio.yml'
pull_request:
branches:
- main
paths:
- 'vectorhub/encoders/audio/**'
- 'tests/encoders/audio/**'
- 'tests/test_utils.py'
- '.github/workflows/python-pytest-audio.yml'
jobs:
run_test:
runs-on: ubuntu-latest
strategy:
max-parallel: 30
matrix:
python-version: [3.6, 3.7]
test-path:
- tests/encoders/audio/vectorai
- tests/encoders/audio/tfhub/test_speech_embedding.py
- tests/encoders/audio/tfhub/test_trill.py
- tests/encoders/audio/tfhub/test_vggish.py
- tests/encoders/audio/tfhub/test_yamnet.py
- tests/encoders/audio/pytorch/test_fairseq.py
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
env:
VH_USERNAME: ${{ secrets.VH_USERNAME }}
VH_API_KEY: ${{ secrets.VH_API_KEY }}
run: |
pip install -r requirements.txt
pip install -e ".[test]"
pip install -e ".[encoders-audio-tfhub]"
pip install -e ".[encoders-audio-pytorch]"
- 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 }}